iOS开发之iOS9新特性
1. 新增的修饰词
- nonnull \ __nonnull : setter 和 getter都不可以为nil
@property (nonatomic, strong, nonnull) NSArray *names;
@property (nonatomic, strong) NSArray * __nonnull names;
- nullable \ __nullable : setter 和 getter 都可以为nil,默认情况下都是setter和getter都是可以为nil的.
@property (nonatomic, strong, nullable) NSArray *names;
@property (nonatomic, strong) NSArray * __nullable names;
- null_resettable : setter可以为nil, getter不可以为nil,只有这种写法,没有上面的__null_resettale的写法
@property (null_resettable, nonatomic, strong) NSArray *names;
- NS_ASSUME_NONNULL_BEGIN / NS_ASSUME_NONNULL_END:在这两个宏之间的声明的变量都是默认为 nonnull/__nonnull
NS_ASSUME_NONNULL_BEGIN
@interface ViewController ()
@property (nonatomic, strong) NSArray *a1;
@property (nonatomic, strong) NSArray *a2;
@property (nonatomic, strong) NSArray *a3;
@property (nonatomic, strong) NSArray *a4;
@property (nonatomic, strong) NSArray *a5;
@end
NS_ASSUME_NONNULL_END
// a1 a2 a3 a4 a5在NS_ASSUME_NONNULL_BEGIN和NS_ASSUME_NONNULL_END之间,他们就默认的都加上了nonnull的修饰词,也就是说a1,a2,a3,a4,a5的setter 和 getter都不可以为nil
- 注意点
- 上面的所有的修饰词都只能来修饰strong,retain的类,不能用来修饰assign
// 错误写法
@property (nonatomic, assign, nullable) int age;
- 如果没有写修饰词,默认情况下是setter和getter都是可以为nil的.
2. 泛型
- 背景
NSArray *tempArr = @[@"1",@"2",@"3",@"4"];
NSUInteger length = [tempArr[1] length];
在iOS9之前还没有引入泛型的时候 [tempArr objectatIndex:1]的方法的时候返回值是id类型,这个时候我们就不能有点语法来调用一些方法.泪如tempArr[1]是个字符串,但是由于返回类型是id类型,我们就不能使用.length来返回长度而需要[tempArr[1] length],泛型就很好的解决了这样的问题.
//声明一个存放字符串的数组
NSArray<NSString *> *tempArr2 = @[@"1",@"2",@"3",@"4"];
// [tempArr2 objectAtIndex:1];此时这个方法的返回值不在是id类型了,而是NSString类型
[tempArr2 objectAtIndex:1].length;
- 运用
现在创建盒子,盒子里面可以放笔,可以放书,但是一个盒子中只能放一种类型的东西,要么盒子里面放书,要么就放笔,这样我们就可以用泛型来实现
//Box.h
#import <Foundation/Foundation.h>
@interface Box<ObjectType>: NSObject
-(void)add:(ObjectType)object;
-(ObjectType)getWithIndex:(NSInteger *)index;
@end
//再创建一个pen类和一个book类
//创建一个只能放笔的box
Box<pen *> *PenBox = [[Box alloc]init];
//创建一个只能放书的box
Box<Book *> *BookBox = [[Box alloc]init];
3. UIWindow和控制statusBar的状态和颜色
- UIWindow 现在必须要有根视图控制器,没有根视图控制器就会崩溃.
- 通过[UIApplication sharedApplication]来控制statusBar的状态已经废弃了.现在是在视图控制器中实现下面的方法来控制statusBar
-(BOOL)prefersStatusBarHidden{
return YES;
}
-(UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
- StatusBar的状态和颜色是由最上层的UIWindow来控制的.
- 在AppDelegate.h里创建一个UIWindew大小和statusBar一样大
///AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.topWindow = [[UIWindow alloc]initWithFrame:application.statusBarFrame];
self.topWindow.windowLevel = UIWindowLevelAlert;
//iOS9之前可以不用设置rootViewController,iOS9之后一定要设置
self.topWindow.rootViewController = [[TopWindowViewController alloc]init];
self.topWindow.backgroundColor = [UIColor clearColor];
self.topWindow.hidden = NO;
return YES;
}
- 1.当AppDelegate里面没有创建 self.topWindow的时候,当前最上层window.rootViewController就是ViewController,可以使用下列的方法进行StatusBar的控制.
- 2.当在AppDelegate创建了一个self.topWindow的时候,当前的最上层window就是 self.topWindow,此时self.topWindow.rootViewController就是TopWindowViewController,则需要在TopWindowViewController实现以下的方法来控制StatusBar
- 3.当需要在其他页面控制StatusBar的时候,可以通过单例来实现 见Demo
-(BOOL)prefersStatusBarHidden{
return YES;
}
-(UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
网友评论