tips

作者: 清风明月伴我行 | 来源:发表于2019-08-27 10:34 被阅读0次
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);                     
  1. 定位必须在主线程 否则无效

  1. 带tableview的vc如何点击view注销键盘

  1. cell带分割线0.5高度,计算cell高度时 ceilf(height) + 0.5

相关文章

网友评论

      本文标题:tips

      本文链接:https://www.haomeiwen.com/subject/oimsectx.html