亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

關于ui中的表視圖

發布時間:2020-07-13 14:14:06 來源:網絡 閱讀:322 作者:hmymy 欄目:開發技術

#import "ViewController.h"


@interface ViewController ()


@end


@implementation ViewController


- (void)viewDidLoad {

    [super viewDidLoad];

    self.data = [NSMutableArray arrayWithArray:[UIFont familyNames]];

    //設置表視圖分割線風格沒有分割線

    //_tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

    //沒有分割線

    //_tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    //設置分割線顏色,默認為灰色

    _tableView.separatorColor = [UIColor orangeColor];

    //設置分割線的偏移量

    //_tableView.separatorInset = UIEdgeInsetsMake(0, -50, 0, -50);

    

    //設置表視圖的頭部視圖

    UIView *headerView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 160)];

    //創建按鈕

    UIButton *btn = [UIButton buttonWithType:UIButtonTypeContactAdd];

    btn.frame = CGRectMake(100, 50, 100, 100);

    [headerView addSubview:btn];

    

    [btn addTarget:self action:@selector(btn_click:) forControlEvents:UIControlEventTouchUpInside];

    headerView.backgroundColor = [UIColor yellowColor];

    _tableView.tableHeaderView = headerView;

    

    //設置表視圖的尾部視圖

    UIView *footView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 200)];

    footView.backgroundColor = [UIColor purpleColor];

    _tableView.tableFooterView = footView;

    

    //設置單元格的行高,默認為44,如果要動態的設置行高,需要在代理方法中實現

    //_tableView.rowHeight = 100;

    

}


- (void)btn_click:(UIButton *)btn{

   //點擊按鈕刪除第一個元素

    [self.data removeObjectAtIndex:0];

    //刷新表視圖,會重新執行數據源方法和代理方法

    //[self.tableView reloadData];

    

    //把第五個元素改為華文琥珀

    //構建IndexPath

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:5 inSection:0];

    //取到單元格

    UITableViewCell *tvc = [self.tableView cellForRowAtIndexPath:indexPath];

    tvc.textLabel.text = @"華文琥珀";

    

//    //輸出在屏幕上顯示的單元格的內容

//    NSArray *cells = [self.tableView visibleCells];

//    for (UITableViewCell *cell in cells) {

//        NSLog(@"cell is %@",cell.textLabel.text);

//    }

//    

//    //輸出在屏幕上顯示的單元格的下標

//    NSArray *indexPaths = [self.tableView indexPathsForVisibleRows];

//    for (NSIndexPath *indexPath in indexPaths) {

//        NSLog(@"indexPath is %ld",indexPath.row);

//    }

    

//    //輸出選中的單元格

//    NSArray *selecedRows = [self.tableView indexPathsForSelectedRows];

//    for (NSIndexPath *selectedRow in selecedRows) {

//        NSLog(@"%@",selectedRow);

//    }

    

    //滑動到指定位置,可配置動畫

    NSIndexPath *indexPath2 = [NSIndexPath indexPathForRow:10 inSection:0];

    [self.tableView scrollToRowAtIndexPath:indexPath2 atScrollPosition:UITableViewScrollPositionTop animated:YES];


}


#pragma mark--UITableViewDataSource

//表視圖的行數

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    

    return self.data.count;

}


//單元格內容

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell *tvCell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

    NSString *str = self.data[indexPath.row];

    tvCell.textLabel.text = str;

    return tvCell;

}

//設置單元格的高度

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

    if (indexPath.row == 3) {

        return 80;

    }else if (indexPath.row == 5){

        return 100;

    }

    return 40;//無效,不會執行

    

}



- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平泉县| 花垣县| 西昌市| 平阳县| 漯河市| 增城市| 鄂伦春自治旗| 余江县| 秦安县| 高要市| 隆林| 建瓯市| 磐石市| 新宁县| 洛南县| 临邑县| 钟祥市| 白水县| 松桃| 承德县| 乌拉特前旗| 莱芜市| 阳原县| 霍邱县| 晋宁县| 仁怀市| 夹江县| 恩平市| 德江县| 洪湖市| 松溪县| 克什克腾旗| 栖霞市| 乌拉特中旗| 肃北| 万年县| 临桂县| 蚌埠市| 永昌县| 东乡族自治县| 南投市|