7.上传附件文件使用其他应用打开崩溃原因:
info.plist添加如下字段
#Supports Document Browser = YES
#Supports opening documents in place = YES
appdelgate.m添加iOS9 API:
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options{
return YES;
}
6. presentedViewController和presentingViewController
VC1 -present- VC2 (VC1的presentedvc = vc2)
vc3 -present- 带导航的vc4 - push到-vc5 (vc5的presentingvc = vc3)
vc5的祖控制器中有present方式显示的控制器vc4,vc4被presnt的控制器vc3就是其presntingvc
5. 单个文字(空格)font:14宽度≈4.0
4. 控制系统样式cell textLabel左边距,分割线左边距90。
self.tableView.separatorInset = UIEdgeInsetsMake(0, 90, 0, 0);
- 定位必须在主线程 否则无效
- 带tableview的vc如何点击view注销键盘
- cell带分割线0.5高度,计算cell高度时 ceilf(height) + 0.5
网友评论