首页 > 代码库 > 添加索引(IOS开发)

添加索引(IOS开发)

索引是用来辅助查询。

原则:

- 索引标题不能与显示的标题完全一样;

- 索引应该具有一定的代表性,能够代表一个数据集合;

- 如果采用了索引列表视图,一般情况下就不再使用扩展视图。(容易点到)

会重新到的数据源方法:

tableView: numberOfRowsInSection: ------获取某节的行数

tableView:cellForRowAtIndexPath: -------Cell数据的实现

numberofSectionInTableView: ----------获取节数

tableView:titleForHeaderInSection: --------节标题

sectionIndexTitlesForTableView: --------获取索引




@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    NSBundle *bundle = [NSBundle mainBundle];
    NSString *plistPath = [bundle pathForResource:@"team_dictionary"
                                           ofType:@"plist"];
    
    // 获取属性列表文件中的全部数据
    self.dicData = http://www.mamicode.com/[[NSDictionary alloc] initWithContentsOfFile:plistPath];>
注意:

在故事版要配置好tableview的委托协议!!!!

添加索引(IOS开发)