首先,你一定會創(chuàng)建好ViewController 和tableViewCell的類文件。
那在tableViewCell萧诫。h中寫好聲明用到的屬性,如圖1.
然后是在帘饶。m中寫好計算cell高度的方法,如圖2.
接下來就是回到Viewontroller中在tableview的協(xié)議方法中調(diào)用方法群扶。
通過-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath及刻;方法,如圖3.
然后再根據(jù)用到的協(xié)議方法編寫竞阐,
1缴饭、- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
2骆莹、- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath颗搂;
3、- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section幕垦;
4峭火、- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView毁习;
5、- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)sectio卖丸;
等等纺且。。稍浆。