iOS 新闻系统源代码
iOS 新闻系统源代码 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"city"]; if (cell == nil) { cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"city"]; } CityItems *item = [_dataArray objectAtIndex:indexPath.row]; cell.textLabel.text = item.name; cell.textLabel.textColor = [UIColor whiteColor]; return cell; } -(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ if ([self.delegate respondsToSelector:@selector(didSelectRow:andCityZip:)]){ CityItems *item = [_dataArray objectAtIndex:indexPath.row]; [self.delegate didSelectRow:self andCityZip:item.zip]; } }
文件列表
iOS 新闻系统源代码
(预估有个555文件)
06f299b5bfffb26d09343d8c4bfbb82303b532
170B
096ac77b8e01c9f32208688b561a38a874fad1
178B
0c9a7bdd20cc7630d95885e9a0ae613900f606
1KB
095e70b63507b38919ae5efd7599f56175166d
832B
0608bf6289d25f2eec2f18d957a2deff7a9cfa
419B
0e441a2dbd10f14dbdafb76b3c55e1da426aa6
926B
02dfb3ab5f062c8fc4c5ebe8b7b1f282842771
566B
04cac4ba9d90bb67b683e17cc6eec4f294c24c
1KB
0816c9fed4274471b9b8c0ffd35433dbc4c3e2
2KB
10fb0f6a4412d40241aaaf81ebd58c904ffb74
179B
暂无评论