美文网首页
微信我的

微信我的

作者: 本泽马 | 来源:发表于2017-11-23 10:28 被阅读0次

#import "FourViewController.h"@interface FourViewController (){

UITableView *tv;    //表格

NSArray *arr3;

NSArray *arr2;

NSArray *arr1;

NSArray *arr4;

}

@end

@implementation FourViewController

- (void)viewDidLoad {

[super viewDidLoad];

//创建表格

tv = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];

//设置代理

tv.delegate = self;

tv.dataSource = self;

[self.view addSubview:tv];

arr2 = [NSArray arrayWithObjects:@"收藏",@"相册",@"卡包",@"表情", nil];

arr1 = [NSArray arrayWithObjects:@"钱包", nil];

arr3 = [NSArray arrayWithObjects:@"设置", nil];

}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

return 4;

}

//设置行数

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

{

if (section == 0)

{

return 1;

}

else if (section == 1)

{

return 1;

}

else if (section == 2)

{

return 4;

}

else

{

return 1;

}

return 0;

}

//设置cell

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

{

static NSString *reuseID = @"cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseID];

if (indexPath.section == 0)

{

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseID];

tv.rowHeight = 150;

}

else

{

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:reuseID];

tv.rowHeight = 40;

}

if (indexPath.section == 0)

{

//设置标题

cell.textLabel.text = @"大晨哥";

//设置标题字体

cell.textLabel.font = [UIFont systemFontOfSize:25];

//设置子标题

cell.detailTextLabel.text = @"微信号:13464577730";

cell.detailTextLabel.font = [UIFont systemFontOfSize:15];

cell.detailTextLabel.backgroundColor = [UIColor lightGrayColor];

//设置颜色

cell.detailTextLabel.backgroundColor = [UIColor lightGrayColor];

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

}

else if (indexPath.section == 1)

{

cell.textLabel.text = arr1[indexPath.row];

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

}

else if (indexPath.section == 2)

{

cell.textLabel.text = arr2[indexPath.row];

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

}

else if (indexPath.section == 3)

{

cell.textLabel.text = arr3[indexPath.row];

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

}

return cell;

}

相关文章

  • 微信我的

    #import "FourViewController.h"@interface FourViewControll...

  • 微信我

    在我还很年轻的时候,我还会主动找朋友同学,见见面,聊聊天,叙叙旧,谝闲传,是感情的一种需要。 而如今的我越来越孤僻...

  • 老公微信我

    昨天突然收到老公微信发的一张图片,是我们结婚时候拍的写真,我下意识就回复: 你也没以前那么帅了,也别嫌我胖[捂脸]...

  • 除了聊天,微信我

    微信,是一个生活方式。 众所周知,微信是腾讯旗下的一款社交软件。它可以发语言,发消息,发图片,等等在微信这个平台上...

  • 群发的微信我都不回

    黑板:注意力是这个时代的稀缺资源。 春节已过,我来晚了,我可以称自己为「自媒体史上最慢的男人」了(傲娇脸)。不过来...

  • 微信我很不爽呀?

    小陈标题党了,鞠躬 基于小陈自己的习惯在使用微信过程中发现了一些“不爽”的地方,记录下来,大家一起讨论 问题一 场...

  • 我在等你微信我

    中午和小青吃完午饭,随后便在北大街特产店买了礼物快递给老师。这个月花钱如流水,这钱花的我都有点麻木了。 然后的下午...

  • 见你不见?

    读见你想见的人有感 就冲这条微信我想见你, 就冲这条微信我应见你, 见你见你!不见不见。 见你不见? 见你想你, ...

  • 招微商代理

    有想做微商的宝宝吗 想做的私信我

  • 0.24收贝

    邮箱出手的,私信我留下微信。我会及时回复

网友评论

      本文标题:微信我的

      本文链接:https://www.haomeiwen.com/subject/bzoavxtx.html