创建可变数和不可变数组的中文方法
// 中文版
NSArray *阿尔 = @[@"AAA"];
NSLog(@"%@", 阿尔);
NSLog(@"%ld", 阿尔.count);
NSArray *卞一 = @[@"YIem", @"YI", @"Bian",@"ccc"];
NSLog(@"%ld", 卞一.count);
NSString *第一个值 = [卞一 firstObject];
NSLog(@"%@", 第一个值);
NSLog(@"%@", [卞一 lastObject ]);
NSString *连接数组中的所有字符串 = [卞一 componentsJoinedByString:@"--"];
NSLog(@"%@", 连接数组中的所有字符串);