#import "SZViewController.h"
@interface SZViewController ()<UITableViewDataSource,UITableViewDelegate>
{
UITableView *tb;
}
@end
@implementation SZViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title=@"设置";
tb=[[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];
tb.dataSource=self;
tb.delegate=self;
[self.view addSubview:tb];
}
-(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{
UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:@"2"];
if(!cell) {
cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"2"];
}
if(indexPath.section==0) {
tb.rowHeight=40;
NSArray *arr;
arr = [NSArray arrayWithObjects:@"个人资料",@"账户与安全",@"我的地址",@"意见反馈",@"账号与s设备安全",@"证件信息",@"推送通知",@"清除缓存",@"关于贝店", nil];
cell.textLabel.text=arr[indexPath.row];
}
else{
UILabel *lb =[[UILabel alloc]initWithFrame:CGRectMake((self.view.frame.size.width-80)/2,0,80,40)];
lb.text=@"退出登录";
lb.textColor=[UIColor redColor];
[cell addSubview:lb];
}
return cell;
}
@end
网友评论