iOS 语法新特性-modern syntax(iOS6后,Xcode4.4后,OS X 10.8.2后)

本文深入探讨了Objective-C中的语法新特性,包括NSNumber、NSArray和NSDictionary的简化语法,以及@synthesize的自动合成特性。通过实例展示了如何使用新语法创建和操作这些基本数据类型,为Objective-C开发者提供了一种更简洁、高效的编程方式。
摘要由CSDN通过智能技术生成
- (void)modernSyntax {
/* 一、语法新特性NSNumber、NSArray、NSDictionary*/
    // ---- NSNumber 新语法 ----
    NSNumber *num = nil;
    // num = [NSNumber numberWithInt:1];
    num = @1;       // numberWithInt/numberWithShort
    num = @1u;      // numberWithUnsignedInt/numberWithUnsignedShort
    num = @'x';     // numberWithChar/numberWithUnsignedChar
    num = @1l;      // numberWithLong
    num = @1lu;     // numberWithUnsignedLong
    num = @1ll;     // numberWithLongLong
    num = @1llu;    // numberWithUnsignedLong
    num = @1.1f;    // numberWithFloat
    num = @1.234;   // numberWithDouble
    num = @YES;     // numberWithBool
    NSUInteger i = 1;
    num = @(i);     //变量用新特性的时候用”()“包起来
    
    //---- NSArray 新语法 ----
    NSArray *array = nil;
    //array = [NSArray arrayWithObjects:@1, @2, @3, nil];
    array = @[@1, @2, @3];  // 初始化(静态变量不能用新特性,旧方法也不行)//static NSArray *aa  = @[@1, @2];
    id obj0 = array[0];      // 获取子元素
    // 遍历方法1
    NSUInteger count = array.count;
    for (NSUInteger i=0; i<count; i++) {
        NSLog(@"%@", array[i]);//
    }
    // 遍历方法2
    for (id obj in array) {
        NSLog(@"%@", obj);
    }
    // 遍历方法3
    [array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
        if (*stop == NO) {
            NSLog(@"|idx:%@-obj:%@|", @(idx), obj);
        }
    }];
    
    //---- NSDictionary 新语法 ----
    NSDictionary *dic = nil;
    // dic = [NSDictionary dictionaryWithObjectsAndKeys:@0, @"key0", @1, @"key1", @2, @"key2", nil];
    dic = @{@"key0":@0, @"key1":@1, @"key2":@2};// 初始化方法
    id obj1 = dic[@"key0"];// 获取
    //遍历
    [dic enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
        if (*stop == NO) {
            NSLog(@"|key:%@-obj:%@|", key, obj);
        }
    }];
    
/* 二、synthesize*/
    //写了@property不用再写@synthesize,Xcode自动合成
}

 

转载于:https://www.cnblogs.com/ericiOScnblogs/p/4210845.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值