您的位置:首页 > 产品设计 > UI/UE

UIView上的按钮跳转到一个控制器UIViewController上去

2016-01-31 02:16 429 查看
我现在有一个UIControllerView 里面addView了一个UIView,我在点击UIView的时候转到另一个UIControllerView,按上面的导航条上面的返回按钮返回第一个UIControllerView,在那个UIView里怎么用pushViewController

在UIView里发送消息

[[NSNotificationCenter defaultCenter] postNotificationName:@"push" object:nil];

在父类控制器接收消息并

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pushOne) name:@"push" object:nil];

-(void)pushOne

{

YYCSettingController *setting=[[YYCSettingController alloc]init];

[self.navigationController pushViewController:setting animated:YES];

}

发送消息
[[NSNotificationCenter defaultCenter]
postNotificationName:@"chuandi" object:self];
接收消息 自己写个action的动作
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(action)
name:@"chuandi" object:nil];
比如你在 一个子类里触发一个事件后 把消息传递到父类 在父类里的action 指向 推向另一个子类 就可以把
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: