创建可变数和不可变数组的中文创建方法

2016-01-05 08:53:03

创建可变数和不可变数组的中文方法

// 中文版
NSArray *阿尔 = @[@"AAA"];
NSLog(@"%@", 阿尔);
NSLog(@"%ld", 阿尔.count);
NSArray *卞一 = @[@"YIem", @"YI", @"Bian",@"ccc"];
NSLog(@"%ld", 卞一.count);

NSString *第一个值 = [卞一 firstObject];
NSLog(@"%@", 第一个值);
NSLog(@"%@", [卞一 lastObject ]);

NSString *连接数组中的所有字符串 = [卞一 componentsJoinedByString:@"--"];
NSLog(@"%@", 连接数组中的所有字符串);

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »