YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

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

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

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

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

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

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »