//刪除第一個元素
成都創(chuàng)新互聯(lián)專業(yè)提供成都主機(jī)托管四川主機(jī)托管成都服務(wù)器托管四川服務(wù)器托管,支持按月付款!我們的承諾:貴族品質(zhì)、平民價格,機(jī)房位于中國電信/網(wǎng)通/移動機(jī)房,服務(wù)器托管雅安服務(wù)有保障![self.data removeObjectAtIndex:0];
//刷新表視圖---重新執(zhí)行數(shù)據(jù)源方法和代理方法
[self.tableView reloadData];
//把第2個單元格的內(nèi)容改為“呵呵”
//構(gòu)建IndexPath
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:2 inSection:0];
//取到單元格
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.textLabel.text = @"呵呵";
//輸出在屏幕上顯示的單元格的內(nèi)容
NSArray *cells = [self.tableView visibleCells];
for (UITableViewCell *cell in cells) {
NSLog(@"%@", cell.textLabel.text);
}
//輸出在屏幕上顯示的單元格的下標(biāo)
NSArray *indexPaths = [self.tableView indexPathsForVisibleRows];
for (NSIndexPath *indexPath in indexPaths) {
NSLog(@"%ld", indexPath.row);
}
// 滑動到指定的位置,可以配置動畫
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:10 inSection:0];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:true];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark -UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.data.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
NSString *fontName = self.data[indexPath.row];
cell.textLabel.text = fontName;
// cell.textLabel.font = [UIFont fontWithName:fontName size:20];
return cell;
}
//設(shè)置section頭部、尾部視圖的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 80;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 80;
}
//自定義頭標(biāo)題
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0,[UIScreen mainScreen].bounds.size.width, 200)];
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 20, 100, 30)];
label.text = @"123213";
label.backgroundColor = [UIColor whiteColor];
[view addSubview:label];
NSLog(@"%@:",view);
view.backgroundColor = [UIColor blueColor];
return view;
}
//設(shè)置單元格的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row == 0) {
return 100;
}else if (indexPath.row == 1) {
return 200;
}
return 44;
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。