[整理]Cocoa的App ID
10年前 (2015-11-12) 2241浏览 0评论
有两种类型的ID: explicit App ID:用于单个app wildcard App IDs:用于(同一个公司或团队开发的)一组app App ID com.domain.* (bundle id search ...
10年前 (2015-11-12) 2241浏览 0评论
有两种类型的ID: explicit App ID:用于单个app wildcard App IDs:用于(同一个公司或团队开发的)一组app App ID com.domain.* (bundle id search ...
10年前 (2015-11-12) 1882浏览 0评论
Singleton 单实例 -》单线程中只有一个实例 Cocoa框架中有好几个都是Singleton: NSFileManager NSWorkspace (UIKit中的)UIApplication Xcode 创建项目后自动帮你建...
10年前 (2015-11-12) 1909浏览 0评论
跳过的坑 layoutSubviews中尽量不要添加subview 否则: 每次页面重新布局显示 (不如进入子页面后再返回当前页面,此时也会调用layoutSubviews的) 此时导致的是: add的subview,会被多次添加 比如: 我之前在...
10年前 (2015-11-12) 6049浏览 0评论
可以通过: UIEdgeInsetsInsetRect 去调整一个frame的尺寸 代码: let originRect = CGRectMake(0, 0, 200, 400) let demoView = UIView(frame: origi...
10年前 (2015-11-12) 2075浏览 0评论
参见官网的解释: UIApplicationMain(_:_:_:_:) – UIKit Function Reference UIGraphicsGetCurrentContext() UIGraphicsPushContext(_...
10年前 (2015-11-12) 2559浏览 0评论
想要实现,页面跳转,基于导航栏的去跳转。 搜: swift navigation view 参考: Start Developing iOS Apps (Swift): Implement Navigation 搜: sw...
10年前 (2015-11-11) 2693浏览 0评论
折腾: [已解决]swift让UITableViewCell的text和detailText垂直居中 等各种内容的期间,遇到些需要总结的内容。 总结如下: 查看iOS模拟器中app的页面的视图的区域分布frame 在iOS 模拟器中调试iOS app...
10年前 (2015-11-11) 2653浏览 0评论
想要设置tab的背景色: 相关已有代码为: //6. create tabs let viewConversation = ConversationViewController() let...
10年前 (2015-11-11) 3978浏览 0评论
如图: UITableViewCell的text和detailText的垂直距离非常小,希望: 让text和detailText都垂直居中,上下的距离大一些 增加textLabel和detailTextLabel的垂直方向的距离 [解决过程] ...
10年前 (2015-11-10) 2698浏览 0评论
希望实现 把一个视图,从父视图中移除掉 类似于: removeSubviews 最后经过找寻,发现是removeFromSuperview: 比如: cell.detailTextLabel?.subviews[0].removeFromSu...