uisearchContorller 展示跑出屏幕
self.definesPresentationContext = YES;
edgesForExtendedLayout属性
只适用于集成了边界容器的 controller,例如UINavigationController。
Layout Feedback Loop Debugging
1.(记录每一个调用了setNeedsLayout的信息)
-UIViewLayoutFeedbackLoopDebuggingThreshold 100 // 50...1000
-NSViewLayoutFeedbackLoopDebuggingThreshold 100 // 50...1000
2.打全局的异常断点exception break point。
po [_UIViewLayoutFeedbackLoopDebugger layoutFeedbackLoopDebugger]
根据地址查找问题
Edit Scheme,切换到Tab Aguments 配置环境变量
MallocStackLoggingNoCompact
NSZombieEnabled
MallocStackLogging
shell malloc_history 40888 0x6497860 |grep 0x6497860
打开“活动监视器”,在进程列表中找到测试APP对应的进程号PID
Xcode启用调试后会在进程列表中找到对应APP的进程)
终端输入sudo malloc_history PID 内存地址
swift宏
#if TARGET_INTERFACE_BUILDER
@IBOutlet open weak var dataSource: AnyObject?
@IBOutlet open weak var delegate: AnyObject?
#else
open weak var dataSource: FSPagerViewDataSource?
open weak var delegate: FSPagerViewDelegate?
#endif
swift xib 读取
let bundle = NSBundle(forClass: self.dynamicType)
let nib = UINib(nibName: String(XXX), bundle: bundle)
#if TARGET_INTERFACE_BUILDER NSBundle *bundle = [NSBundle bundleForClass:[self class]]; [bundle loadNibNamed:@“XXX” owner:self options:nil]; #else [[NSBundle mainBundle] loadNibNamed:@“XXX” owner:selfoptions:nil]; #endif
差别
initWithNibName方法:是延迟加载,这个View上的控件是 nil 的,只有到需要显示时,才会不是 nil。
loadNibNamed是立即加载,调用这个方法加载的xib对象中的各个元素都已经存在.
pod兼容swift3.0
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
便利执行移除操作
[makeObjectsPerformSelector: removeFromSuperView]
编译源文件
clang -rewrite-objc xxx.m
类和分类中load的加载机制
1)、类load中可以调用分类的方法,因为附加category到类的工作会先于+load方法的执行
2)、+load的执行顺序是先类,后category,而category的+load执行顺序是根据编译顺序决定的。
iOS9 HTTP 不能正常使用的解决办法
在Info.plist中添加NSAppTransportSecurity类型Dictionary。
在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES
文字 图片的不同
文字,颜色等是矢量数据,放大不会失真。
图片并非矢量数据,处理方式有所不同
__block 原理
自动变量是以值传递方式传递到Block的构造函数里面去的
在Block中改变变量值有2种方式
1. 一是传递内存地址指针到Block中,
2. 二是改变存储区方式(__block)。
ARC环境下,一旦Block赋值就会触发copy,__block就会copy到堆上
弹簧动画
usingSpringWithDamping 0-1 数值越小「弹簧」的振动效果越明
initialSpringVelocity则表示初始的速度 数值越大一开始移动越快
[UIView animateWithDuration:0.8 delay:_delay usingSpringWithDamping:0.6 initialSpringVelocity:0.1 options:UIViewAnimationOptionCurveEaseInOut animations:^{
} completion:^(BOOL finished) {
}];
搜索约束冲突视图
(lldb) po [[UIWindow keyWindow] _autolayoutTrace]可以看到AutoLayout的层级图
等待网络回调
dispatch_semaphore_t semaphore = dispatch_semaphore_create(1);
[[HttpManager sharedInstance] requestWithParam:@{} success:^{
dispatch_semaphore_signal(semaphore);
} failed:^(NSString *errorMsg) {
dispatch_semaphore_signal(semaphore);
}];
dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER);
多网络同时回调 线程同步
1.GCD 2.NSOperation 依赖 3.RAC
// 创建
dispatch_group_t group = dispatch_group_create();
// banner 接口
dispatch_group_enter(group);
[[BHNetReqManager sharedManager].bh_requestUrl(@"banner") startRequestWithCompleteHandler:^(id response, NSError *error) {
dispatch_group_leave(group);
}];
// table 接口
dispatch_group_enter(group);
[[HTTPManager sharedManager].requestUrl(@"table") startRequestWithCompleteHandler:^(id response, NSError *error) {
dispatch_group_leave(group);
}];
dispatch_group_notify(group, dispatch_get_main_queue(), ^{
// 处理数据
});