必须知道的几件事(一)
一:启动界面---------
1.程序启动会自动加载叫做Default的图片
- 1> 3.5inch 非retain屏幕:Default.png
- 2> 3.5inch retina屏幕:[email protected]
- 3> 4.0inch retain屏幕: [email protected]
- 4>4.70inch retain屏幕: [email protected]
- 5>5.50inch retain屏幕: [email protected](关于3x有机会总结一下)
2.只有程序启动时自动去加载的图片, 才会自动在4inch retina时查找[email protected]
二:控件总结---------
一个控件用肉眼看不见,有哪些可能
- 1.根本没有创建实例化这个控件
- 2.没有设置尺寸
- 3.控件的颜色跟父控件的背景色一样(实际上已经显示了,只不过用肉眼看不见)
- 4.透明度alpha <= 0.01
- 5.hidden = YES
- 6.没有添加到父控件中
- 7.被其他控件挡住了
- 8.位置不对
- 9.父控件发生了以上情况
- 10.特殊情况
- * UIImageView没有设置image属性,或者设置的图片名不对
- * UILabel没有设置文字,或者文字颜色和跟父控件的背景色一样
- * UITextField没有设置文字,或者没有设置边框样式borderStyle
- * UIPageControl没有设置总页数,不会显示小圆点
- * UIButton内部imageView和titleLabel的frame被篡改了,或者imageView和titleLabel没有内容
- * .....
添加一个控件的建议(调试技巧):
- 1.最好设置背景色和尺寸
- 2.控件的颜色尽量不要跟父控件的背景色一样
三:block和weak简单总结
API Reference对__block变量修饰符有如下几处解释:
-
//A powerful feature of blocks is that they can modify variables in the same lexical scope. You signal that a block can modify a variable using the __block storage type modifier. //At function level are __block variables. These are mutable within the block (and the enclosing scope) and are preserved if any referencing block is copied to the heap.
大概意思归结出来就是两点:
- 1.__block对象在block中是可以被修改、重新赋值的。
- 2.__block对象在block中不会被block强引用一次,从而不会出现循环引用问题。
API Reference对__weak变量修饰符有如下几处解释:
- __unsafe_unretained typeof(self) weakSelf = self; //MRC 等同于 __weak UIViewController *weakSelf =self;
- __weak typeof(self) weakSelf = self; //ARC
-
__weak specifies a reference that does not keep the referenced object alive. A weak reference is set to nil when there are no strong references to the object.
使用了__weak修饰符的对象,作用等同于定义为weak的property。自然不会导致循环引用问题,因为苹果文档已经说的很清楚,当原对象没有任何强引用的时候,弱引用指针也会被设置为nil。
因此,__block和__weak修饰符的区别其实是挺明显的:
- 1.__block不管是ARC还是MRC模式下都可以使用,可以修饰对象,还可以修饰基本数据类型。
- 2.__weak只能在ARC模式下使用,也只能修饰对象(NSString),不能修饰基本数据类型(int)。
- 3.__block对象可以在block中被重新赋值,__weak不可以。
- PS:__unsafe_unretained修饰符可以被视为iOS SDK 4.3以前版本的__weak的替代品,不过不会被自动置空为nil。所以尽可能不要使用这个修饰符。
时间: 2024-10-05 04:45:11