标签:style blog http io ar color os 使用 sp
1 // 数据总组数 2 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // Default is 1 if not implemented 3 4 // 每组数据的行数 5 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; 6 7 // 每一行显示的内容 8 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
1 // 数据源 2 @property(nonatomic, assign) id<UITableViewDataSource> dataSource;
1 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
1 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
标签:style blog http io ar color os 使用 sp
原文地址:http://www.cnblogs.com/hellovoidworld/p/4134084.html