相信很多朋友都寫(xiě)過(guò)這樣的設(shè)置界面,點(diǎn)擊每個(gè)cell 都會(huì)調(diào)到相應(yīng)的新的控制器,如果說(shuō)每個(gè)控制器我都要在里面進(jìn)行重寫(xiě)布局,那么代碼量肯定會(huì)非常的大而且閱讀性也不是很好.
就像這樣(下圖),這里push的沒(méi)一個(gè)控制器都是一個(gè)單獨(dú)的控制器 , 這個(gè)設(shè)置界面包含五個(gè)控制器 , 每個(gè)里面又要單獨(dú)的進(jìn)行設(shè)置 , 這個(gè)還算是少的,如果說(shuō)這個(gè)設(shè)置界面進(jìn)去后 , 還可以跳轉(zhuǎn)要是還這樣寫(xiě)那真的是 ........ 醉了 , 可能你整個(gè)項(xiàng)目的界面數(shù)量基本2/3 都在設(shè)置界面上了.大大的提高了工作效率,而且程序的可靠性可能也會(huì)受到相應(yīng)的影響
這個(gè)問(wèn)題困擾我很久(上面這個(gè)就是我寫(xiě)的 醉了當(dāng)時(shí)著急 ?沒(méi)時(shí)間細(xì)想 ?就先把功能實(shí)現(xiàn)再說(shuō))想找相關(guān)的技術(shù)博客發(fā)現(xiàn)這方面的博客實(shí)在是太少了終于讓我找到了解決辦法(sorry,又不要臉了,看到了個(gè)視頻里面的方法) plist文件加載控制器 而且可以為控制器進(jìn)行設(shè)置,本來(lái)可以寫(xiě)跟設(shè)置界面一樣的,但是周末犯懶了,等我想寫(xiě)的時(shí)候已經(jīng)12點(diǎn)多了,沒(méi)辦法周一還要上班就寫(xiě)了個(gè)簡(jiǎn)易版的,先對(duì)付看吧下周補(bǔ)全(下面就是plist文件,自己寫(xiě))
排版有點(diǎn)問(wèn)題 , 下次肯定改進(jìn)
```
#import "ViewController.h"#import "SetingViewController.h"@interface ViewController ()@property (nonatomic,strong)NSArray *arr;
@end
@implementation ViewController
-(NSArray *)arr{
if (!_arr) {
NSString *path = [[NSBundle mainBundle] pathForResource:@"SetingV_C.plist" ofType:nil];
_arr = [NSArray arrayWithContentsOfFile:path];
}
return _arr;
}
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"%lu",(unsigned long)self.arr.count);
UITableView *tab = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
[self.view addSubview:tab];
tab.delegate = self;
tab.dataSource = self;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return self.arr.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *ID = @"cell";
NSDictionary *dict = self.arr[indexPath.row];
NSLog(@"%@",dict);
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
}
cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:dict[@"accview_img"]]];
cell.accessoryView.backgroundColor = [UIColor blackColor];
cell.textLabel.text = @"cell";
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 80;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
NSDictionary *dict = self.arr[indexPath.row];
NSString *TargetClassName = dict[@"setingV_c"];
if (TargetClassName) {
Class TargetClass = NSClassFromString(TargetClassName);
UIViewController *vc = [[TargetClass alloc]init];
if ([vc isKindOfClass:[SetingViewController class]]) {
SetingViewController *setVc = (SetingViewController *)vc;
[self.navigationController pushViewController:setVc animated:YES];
NSLog(@"%@",[setVc class]);
}
}
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
```
上面看不清楚的 看這里吧 ?首先懶加載吧plist文件加載到數(shù)組中(數(shù)組中是字典 ?tabView的數(shù)據(jù)源和代理方法就不粘貼了 基本就那樣)
點(diǎn)擊cell的時(shí)候 ?通過(guò)數(shù)組找到相應(yīng)的鍵值,再把他們通過(guò)映射轉(zhuǎn)正類然后就可以直接跳轉(zhuǎn),頁(yè)面布局相近的控制器可以重復(fù)使用,只需要修改(換一個(gè)plist)為他重新設(shè)置頁(yè)面就可以使用
(下圖就是這個(gè)代碼的運(yùn)行狀態(tài),accessoryView 添加的圖片沒(méi)時(shí)間找我就自己截了個(gè)圖演示用用就OK,這些都是通過(guò)plist文件加載的,除了文字cell, 那個(gè)是著急了,沒(méi)時(shí)間弄) 如果需要我們調(diào)到下個(gè)控制器還可以用這樣的布局,對(duì)應(yīng)的accessoryView 或者其他的cell中的顯示的內(nèi)容我們可以通過(guò)修改plist文件就可以進(jìn)行修改