1. 初始化一个table-view控制器来管理一个表格视图的一个给定的风格。 

- (id) initWithStyle:(UITableViewStyle)style

{

self = [super initWithStyle:style];

if (self) {

self.tableView.separatorColor = [UIColor clearColor];

self.tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;

 

self.title = @"Currency";

self.hidesBottomBarWhenPushed = YES;

 

}

returnself;

}

相关文章:

  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案