UISplitViewController 简单使用

这种控制器只能用于iPad,它可以在iPad屏幕中显示两个不同的场景:在横向模式下,左边显示一个表,供用户选择;用户选择表中的元素后,详细视图将显示该元素的详细信息。如果iPad被旋转到纵向模式,表将消失,而详细视图将填满整个屏幕;要进行导航,用户可触摸一个工具栏按钮,这将显示一个包含表的弹出框。

默认情况下,UISplitViewController的一端连接到一个受导航控制器(UINavigationController)管理的表视图(UITableViewController),这代表主场景;另一端连接到一个普通视图控制器(UIViewController),这代表详细场景。

可以将主场景和详细场景替换为新的控制器,只需要删除默认的控制器,然后按住Control键,并从分割视图控制器对象拖曳到新的主场景或详细场景,再在Xcode提示时选择Relationship - masterViewController或Relationship - detailViewController。

主场景和详细场景可以通过分割视图控制器互相访问,属性splitViewController包含一个名为viewControllers的数组。通过使用NSArray的方法lastObject,可获取该数组的最后一个元素(详细信息视图)。通过调用方法objectAtIndex,并将索引0传递给它,可获取该数组的第一个元素(主视图)。这样,两个视图控制器就可交换信息了。

1, 在AppDelegate.h 中声明两个属性 代码如下 ,分别为UISplitViewController 和 右视图的Controller 其中  self.splitViewController.viewControllers = @[masterNavi,detilleNavi]; 数组中两个NavigationController 分别为左右视图

#import#import "detilleViewController.h"@interface AppDelegate : UIResponder@property (strong, nonatomic) UIWindow *window;

@property(nonatomic,strong)UISplitViewController * splitViewController;

@property(nonatomic,strong)detilleViewController * detille;

@end


2,AppDelegate.m 中启动方法中代码如下所示

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];

ViewController * masterVC = [[ViewController alloc]init];

UINavigationController * masterNavi = [[UINavigationController alloc]initWithRootViewController:masterVC];

self.detille= [[detilleViewController alloc]init];

UINavigationController * detilleNavi = [[UINavigationController alloc]initWithRootViewController:self.detille];

self.splitViewController = [[UISplitViewController alloc]init];

[self.splitViewController setPresentsWithGesture:YES];

self.splitViewController.viewControllers = @[masterNavi,detilleNavi];

self.splitViewController.delegate = self.detille;

self.window.rootViewController =self.splitViewController;

[self.window makeKeyAndVisible];

return YES;

}

3,以下代码为左视图tableView的构建,需要注意的是, 在tableViewCell 的didSelect方法中,不能去创建右边视图的Controller,右视图Controller 已经在AppDelegate中创建好了, 所以在这里我们只需获取到右视图的Controller即可

#import "ViewController.h"#import "normalTableViewCell.h"#import "XWAFNetworkTool.h"#import "XWMain.h"#import "detilleViewController.h"#import "AppDelegate.h"@interface ViewController ()@property(nonatomic,strong)UITableView * tableView;

@property(nonatomic,strong)NSMutableArray * cellArray;

@property(nonatomic,strong)detilleViewController * detille;

@end

@implementation ViewController

-(void)handleData

{

self.cellArray = [NSMutableArray array];

[XWAFNetworkTool getUrl:@"http://api.guju.com.cn/v2/strategy/strategyList?userId=&count=50&start=0&" body:nil response:XWJSON requestHeadFile:nil success:^(NSURLSessionDataTask *task, id resposeObject) {

NSArray * array = [resposeObject objectForKey:@"strategyList"];

for (NSDictionary * dic in array) {

XWMain * model = [[XWMain alloc]init];

[model setValuesForKeysWithDictionary:dic];

[self.cellArray addObject:model];

}

[self.tableView reloadData];

} failure:^(NSURLSessionDataTask *task, NSError *error) {

NSLog(@"%@",error);

}];

}

-(void)createTableView

{

self.tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStylePlain];

self.tableView.delegate =self;

self.tableView.dataSource =self;

[self.view  addSubview:self.tableView];

[self.tableView registerClass:[normalTableViewCell class] forCellReuseIdentifier:@"reuse"];

}

- (void)viewDidLoad {

[super viewDidLoad];

[self createTableView];

[self handleData];

// Do any additional setup after loading the view, typically from a nib.

}

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

{

return self.cellArray.count;

}

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

{

XWMain  * main = self.cellArray[indexPath.row];

normalTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"reuse"];

cell.normal = main;

return  cell;

}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

XWMain * main = self.cellArray[indexPath.row];

AppDelegate * app =[UIApplication sharedApplication].delegate;

detilleViewController * detille  =  app.detille;

[detille setObject:main];

}

4,右视图中代码详见如下 其中 -(BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation 为协议方法用来设置横屏是否支持分屏

#import "XWMain.h"

#import "UIImageView+WebCache.h"

@interface detilleViewController ()

@property(nonatomic,strong)UILabel * titleLabel;

@property(nonatomic,strong)UIImageView * imageV;

@end

@implementation detilleViewController

-(void)setObject:(id)object

{

_object = object;

[self loadDetilleView];

}

-(void)createSubView

{

self.titleLabel = [[UILabel alloc]init];

self.titleLabel.frame = CGRectMake(0, 0, self.view.frame.size.width , 50);

self.titleLabel.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2+100);

self.titleLabel.backgroundColor = [UIColor yellowColor];

self.titleLabel.textAlignment = NSTextAlignmentCenter;

self.imageV = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];

[self.view addSubview:self.imageV];

[self.view addSubview:self.titleLabel];

}

-(void)loadDetilleView

{

if (!self.titleLabel) {

[self createSubView];

}

if (self.object) {

XWMain * main = self.object;

NSLog(@" !!!%@",main.title);

self.titleLabel.text = main.title;

self.titleLabel.textColor = [UIColor blackColor];

NSRange range = NSMakeRange(0, 3);

NSString * imageUrl = [NSString stringWithFormat:@"http://image.gooju.cn/images/%@/9/%@_0_9-.jpg",[main.covorPhotoId.description substringWithRange:range],main.covorPhotoId.description];

[self.imageV sd_setImageWithURL:[NSURL URLWithString:imageUrl]];

NSLog(@"***!!!%@",self.titleLabel.text);

}

}

-(BOOL)splitViewController:(UISplitViewController *)svc shouldHideViewController:(UIViewController *)vc inOrientation:(UIInterfaceOrientation)orientation

{

return YES;

}

- (void)viewDidLoad {

[super viewDidLoad];

[self loadDetilleView];

// Do any additional setup after loading the view.

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,423评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,147评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,019评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,443评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,535评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,798评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,941评论 3 407
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,704评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,152评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,494评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,629评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,295评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,901评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,978评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,333评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,499评论 2 348

推荐阅读更多精彩内容