
ios
xujing_1992
这个作者很懒,什么都没留下…
展开
-
ios 设置表格tableview每行分割线从屏幕边缘开始
-(void)viewDidLayoutSubviews{ if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) { [self.tableView setSeparatorInset:UIEdgeInsetsMake(0,0,0,0)]原创 2016-07-06 16:57:30 · 353 阅读 · 0 评论 -
ios 布局预览
1.完成布局 打开辅助编辑器 command+alt + enter 2.将辅助编辑器改为Manual 3.点击修改的地方,选择Preview ;即Manual -- > Preview 4.上图即为布局的预览,左下脚的加号可以添加不同尺寸的屏幕的布局预览原创 2016-09-19 16:08:51 · 579 阅读 · 0 评论 -
安装cocoapods出现的问题(1)
pod install 报错Analyzing dependencies[!] The dependency `AFNetworking (~> 2.0)` is not used in any concrete target.查资料发现问题就是我的版本不是 last version,使用如入命令:$sudo gem install cocoapods但是显示:W原创 2016-12-01 15:46:31 · 290 阅读 · 0 评论 -
安装cocoapods出现的问题(2)
$sudo gem install cocoapods但是显示:While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.意思为没有权限修改为如下:原创 2016-12-01 16:18:12 · 270 阅读 · 0 评论 -
NSArray arrayWithContentsOfFile取值为nil
NSString *path = [[NSBundle mainBundle] pathForResource:@"Image.plist" ofType:nil]; _titleArr = [NSArray arrayWithContentsOfFile:path]; titleArr 取到的值为nil 原因:Root为Dictionary不是NSArr原创 2016-12-05 10:35:30 · 765 阅读 · 0 评论 -
App Store上传失败的问题
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [1.1.2.1] in the Info.plist file must contain a higher version than that of the previously approved versio原创 2016-12-21 14:44:29 · 823 阅读 · 0 评论 -
关于ios发布的一些问题,待补充
原创 2016-12-21 15:46:42 · 305 阅读 · 0 评论