常見TableView

    //1.tableView
    self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight) style:(UITableViewStylePlain)];
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    self.tableView.showsVerticalScrollIndicator = NO;
    self.tableView.showsHorizontalScrollIndicator = NO;
    [self.tableView setSeparatorStyle:(UITableViewCellSeparatorStyleNone)];
    [self.view addSubview:self.tableView];
#pragma mark----tableView delegate datasource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    
    return 2;
    
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if (section == 0) {
        
        return 9;
        
    }else{
     
        return 1;

    }
    
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    if (indexPath.section == 0) {
        
        if (indexPath.row == 0) {//賬號
            
            
            HXLMyZoneAccountTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneAccount_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneAccountTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneAccount_cell"];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
            }
            
            cell.model = self.userInfoModel;
            return cell;
            
        }else if (indexPath.row == 1||indexPath.row == 4||indexPath.row == 5){//簽到 優(yōu)惠卷 資料
            
            HXLMyZoneFirstTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneFirst_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneFirstTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneFirst_cell" index:indexPath];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;

                
            }
            
            if (indexPath.row == 1) {
                
                cell.model = self.otherInfoModel;
                
            }else if (indexPath.row == 5){
                
                cell.model = self.otherInfoModel;
                
                
            }else{
                cell.model = self.otherInfoModel;
                
//                cell.titleLables.hidden = NO;
//                cell.jianImg.hidden = NO;
//                cell.line.hidden = NO;
            }
            cell.titleLables.text = self.titlesArray[indexPath.row];
            
            
            return cell;
            
        }else if (indexPath.row == 2){//廣場
            
            HXLMyZoneSqureTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneSqure_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneSqureTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneSqure_cell" ];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
                
                
            }
            
            
            cell.titleLables.text = self.titlesArray[indexPath.row];
            cell.model = self.squareLastInfoModel;
            self.cellHight = cell.cellHight;
            
            return cell;
            
            
        }
        else if (indexPath.row == 6){//認(rèn)證
            
            HXLMyZoneRegistTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneRegist_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneRegistTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneRegist_cell"indexPath:indexPath];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;

                
            }
            
            
            cell.titleLables.text = self.titlesArray[indexPath.row];
            
            cell.model = self.userInfoModel;
            cell.object = self;
            return cell;
            
            
            
        }else if (indexPath.row == 7){//財富
            
            HXLMyZoneRegistTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneRegist_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneRegistTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneRegist_cell" indexPath:indexPath];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;

                
            }
            
            cell.model = self.otherInfoModel;
            cell.titleLables.text = self.titlesArray[indexPath.row];
            return cell;
            
        }else if (indexPath.row == 8){//標(biāo)簽
            
            HXLMyZoneMarkTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneMark_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneMarkTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneMark_cell"];
                cell.selectionStyle = UITableViewCellSelectionStyleNone;
                
                
            }
            
            
            cell.titleLables.text = self.titlesArray[indexPath.row];
            cell.modelsArray = self.lableListArray;
            
            return cell;
            
            
            
        }
        else{
            
    
            
            HXLMyZoneFirstTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZoneFirst_cell"];
            if (cell == nil) {
                
                cell = [[HXLMyZoneFirstTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZoneFirst_cell" index:indexPath];
        
                cell.selectionStyle = UITableViewCellSelectionStyleNone;

            }
            cell.titleLables.text = self.titlesArray[indexPath.row];
            cell.model = self.taskLastInfoModel;
            
            return cell;
            
        }
        
        
        
    }else{
        
        HXLMyZonePhotoTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"hxl_myZonePhoto_cell"];
        if (cell == nil) {
            
            cell = [[HXLMyZonePhotoTableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"hxl_myZonePhoto_cell"];
            cell.selectionStyle = UITableViewCellSelectionStyleNone;

        }
        
        cell.modelsArray = self.imageListArray;
        if (self.imageListArray.count == 0) {
            
            cell.signLable.text = @"您還沒有照片,點擊上傳";

        }else{
            
            cell.signLable.text = [NSString stringWithFormat:@"%ld張照片,查看全部",self.imgCount];

        }
        self.cellHight = cell.cellHight;
        return cell;
        
        
    }


    
    
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    
}


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    if (indexPath.section == 0)
 {
        
        if (indexPath.row == 2) 
       {
            return self.cellHight;
        }
        else
      {
            return 100*PIX;
        }
        
    }else{
        
        return self.cellHight;
    }

    
}

- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self)
 {
 }       
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市劣像,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌荞估,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件稚新,死亡現(xiàn)場離奇詭異勘伺,居然都是意外死亡,警方通過查閱死者的電腦和手機褂删,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門飞醉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人笤妙,你說我怎么就攤上這事冒掌。” “怎么了蹲盘?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵股毫,是天一觀的道長。 經(jīng)常有香客問我召衔,道長铃诬,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮趣席,結(jié)果婚禮上兵志,老公的妹妹穿的比我還像新娘。我一直安慰自己宣肚,他們只是感情好想罕,可當(dāng)我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著霉涨,像睡著了一般按价。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上笙瑟,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天楼镐,我揣著相機與錄音,去河邊找鬼往枷。 笑死框产,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的错洁。 我是一名探鬼主播秉宿,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼墓臭!你這毒婦竟也來了蘸鲸?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤窿锉,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后膝舅,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體嗡载,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年仍稀,在試婚紗的時候發(fā)現(xiàn)自己被綠了洼滚。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡技潘,死狀恐怖遥巴,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情享幽,我是刑警寧澤铲掐,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布,位于F島的核電站值桩,受9級特大地震影響摆霉,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一携栋、第九天 我趴在偏房一處隱蔽的房頂上張望搭盾。 院中可真熱鬧,春花似錦婉支、人聲如沸鸯隅。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蝌以。三九已至,卻和暖如春户誓,著一層夾襖步出監(jiān)牢的瞬間饼灿,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工帝美, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留碍彭,地道東北人。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓悼潭,卻偏偏與公主長得像庇忌,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子舰褪,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容