iOS
共由石石石
这个作者很懒,什么都没留下…
展开
-
NSUInteger,NSInteger,int
NSUInteger是无符号的,即没有负数NSInteger是有符号的, 所以NSUInteger类型不能给它赋负值NSInteger比Int多了个判断,不用考虑32位或者64位原创 2018-07-09 16:15:05 · 1802 阅读 · 0 评论 -
Xcode10 lstdc++.6.0.9
有第三方库引用了lstdc++.6.0.9,Xcode10移除了这个库,等第三方更新。下面是临时解决办法下载lstdc++.6.0.9文件,放在 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib/lstdc++.6.0...原创 2018-09-26 12:04:50 · 4374 阅读 · 0 评论 -
Xcode10 plist重复
Build Phases --> Copy Bundle Resources里面删除info.plist文件原创 2018-09-26 12:06:49 · 792 阅读 · 0 评论 -
XCode10 导入头文件不提示
第一步第二步原创 2018-10-11 10:29:42 · 6506 阅读 · 1 评论 -
This application’s application-identifier entitlement does not match that of the installed applicati
application-identifier有冲突 卸载重新运行解决原创 2019-03-12 16:37:24 · 2964 阅读 · 0 评论 -
multiple conmands produce info.plist
1.打开Workspace Settings...2.切换 build system原创 2019-03-28 10:47:23 · 401 阅读 · 0 评论 -
UICollectionView 索引条被挡住
ios11之后会出现区头挡住索引条的bug修复:1.创建class继承CALayer2.UICollectionReusableView类原创 2019-05-22 17:47:52 · 444 阅读 · 0 评论 -
ios translucent
全局设置导航栏是否半透明[[UINavigationBar appearance] setTranslucent:NO];设置为NO ,view y轴起点为导航栏高度通过设置以下代码,起点从0开始self.edgesForExtendedLayout = UIRectEdgeNone;...原创 2019-08-06 14:24:00 · 334 阅读 · 0 评论