解决方案
小于 1 分钟
UICollectionView layout
ScrollView Nested
- 2019.02.13 多层 UIScrollView 嵌套滚动解决方案
- 2018.09.09 NestedScrollView
- 2018.05.05 iOS 多级 UIScrollView 嵌套的实现方案
- 2017.05.08 iOS 嵌套UIScrollview的滑动冲突另一种解决方案
- 2017.05.02 嵌套UIScrollview的滑动冲突解决方案
Insert a custom view to UITextView
- Hakawai
A powerful, extensible UITextView.
- SubviewAttachingTextView : 允许 UITextView 嵌入 UIView 视图
UITextView behavior and subclass that allow embedding subviews as text attachments.
UICollectionView inside UITableViewCell
- UICollectionView inside a UITableViewCell — dynamic height?
- Dynamic-height UICollectionView inside a dynamic-height UITableViewCell
- Self-Sizing Hell — UITableView and UICollectionView Cells
Automating Version & Build Number
- Automating Version and Build Numbers Using agvtool
- Better way of incrementing build number?
- Automatic build versions from git in Xcode
if [ "Release" != "${CONFIGURATION}" ]; then
exit 0
fi
plist="Info.plist"
shortVersion=$(/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" "${PROJECT_DIR}/$plist")
echo "versionNumber: $shortVersion"
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${PROJECT_DIR}/$plist")
echo "pre buildNumber: $buildNumber"
buildNumber=`date +"%y%m%d.%H%M%S"`
echo "current buildNumber: $buildNumber"
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/$plist"