博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Objective - c 创建二维数组
阅读量:5899 次
发布时间:2019-06-19

本文共 676 字,大约阅读时间需要 2 分钟。

 

NSArray     _sectionDataStr;_sectionDataStr = [[NSArray alloc] initWithObjects:                       [NSArray arrayWithObjects:@"Item1", @"Item2", nil],                       [NSArray arrayWithObjects:@"Item1", @"Item2", @"Item3", nil],                       [NSArray arrayWithObjects:@"Item1", @"Item2", @"Item3", @"Item4", nil],                       [NSArray arrayWithObjects:@"Item1", @"Item2", @"Item3", @"Item4", @"Item5",nil],                       nil];

打印:

 

 

NSArray * array;    array = [_sectionDataStr objectAtIndex:0];    NSString* str = [array objectAtIndex:0];    NSLog(@"%@",str);

或:

 

 

NSLog(@"%@",[[_sectionDataStr objectAtIndex:0] objectAtIndex:0]);

输出结果是:

 

Item1

 

转载地址:http://bbhsx.baihongyu.com/

你可能感兴趣的文章
[转载]IE678兼容性前缀区分
查看>>
Logical Volume Manager(逻辑盘卷管理)
查看>>
SQL Server中使用自定义指定顺序排序
查看>>
Linux服务器安全配置小结(转)
查看>>
Orangepi 修改 Debian国内源
查看>>
[转]“AIR SDK 0.0: AIR SDK location “...\devsdks\AIRSDK\Win” does not exist.”问题解决~
查看>>
(九) spring 使用自定义限定符注解
查看>>
SmartCoder每日站立会议 01
查看>>
Linux pip命令报错 -bash: pip: command not found
查看>>
win8+Ubuntu双系统安装方法
查看>>
AngularJS内置指令 ng-xxx
查看>>
一个C#程序员学习微信小程序的笔记
查看>>
HDU 5512 Pagodas
查看>>
Linux下添加新硬盘,分区及挂载(存在空闲内存情况下)
查看>>
java关于jdbc的配置与使用步骤
查看>>
MyEclipse下Maven的安装配置
查看>>
网盘搜索器 v1.0
查看>>
让虚拟机的软盘盘符不显示(适用于所有windows系统包括Windows Server)
查看>>
【摘】人生苦短,每日python
查看>>
软件架构的基本模式
查看>>