#import "rootTableViewController.h"
@interface rootTableViewController ()
@property(strong,nonatomic)NSArray *arrTitle;
@property(strong,nonatomic)NSArray *arrImage;
@end
@implementation rootTableViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title=@"我";
self.navigationController.navigationBar.backgroundColor=[UIColor blackColor];
self.arrTitle=@[@"相册",@"收藏",@"钱包",@"卡包"];
self.arrImage=@[@"MoreMyAlbum@2x.png",@"MoreMyFavorites@2x.png",@"MoreMyFavorites@2x.png",@"PayCarddetailVirtualIcon.png"];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"mycell"
];
self.tableView.scrollEnabled=NO;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 4;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (section==0) {
return 1;
}
else if (section==1){
return 4;
}
else
{
return 1;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellInent=@"mycell";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellInent forIndexPath:indexPath];
if (indexPath.section==0) {
cell.textLabel.numberOfLines=2;
cell.textLabel.text=@"XXX \r\n微信号:11361189";
cell.imageView.image=[UIImage imageNamed:@"a.jpeg"];
UIImage *im=[UIImage imageNamed:@"add_friend_myQR"];
UIButton *button=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, im.size.width, im.size.height)];
[button setImage:im forState:UIControlStateNormal];
cell.accessoryView=button;
}
else if (indexPath.section==1)
{
cell.textLabel.text=self.arrTitle[indexPath.row];
cell.imageView.image=[UIImage imageNamed:self.arrImage[indexPath.row]];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
}
else if (indexPath.section==2)
{
cell.textLabel.text=@"表情";
cell.imageView.image=[UIImage imageNamed:@"MoreExpressionShops"];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
}
else
{
cell.textLabel.text=@"设置";
cell.imageView.image=[UIImage imageNamed:@"MoreSetting"];
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
}
return cell;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section==0) {
return 100.0;
}else
{
return 40.0;
}
iOS 微信页面设计
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在制作上拉加载的微信页面时,有时为了清空缓存,需要用到强制刷新页面,但是微信内置浏览器的缓存机制,会在relond...
- 项目结构 WeixinApiController WeixinApiController 继承 ApiContro...