从侧面菜单 Segue 主 ViewController
Posted
技术标签:
【中文标题】从侧面菜单 Segue 主 ViewController【英文标题】:Segue main ViewController from side menu 【发布时间】:2014-09-16 21:04:52 【问题描述】:我正在开发一个可以在GitHub 上找到的应用程序,但我不知道如何使用滑动侧菜单进行切换。这个想法是主 ViewController 将更改为在侧面菜单中选择的不同视图(没有后退箭头),然后让主 ViewController 滑回。我可以让 ViewController 滑动,但我不能继续正确。当从侧面菜单中按下“日历”按钮时,我目前正试图从“ViewController.m”转到“CalendarView.XIB”。
ViewController.m:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
if (indexPath.row == 0)
NSLog(@"Pressed 0");
BlogView *blogView = [[BlogView alloc] init];
[self.puView addSubview:blogView];
[self hideMenu];
else if (indexPath.row == 1)
NSLog(@"Pressed 1");
TwitterView *twitView = [[TwitterView alloc] init];
[self hideMenu];
[self.puView addSubview:twitView];
else if (indexPath.row == 2)
NSLog(@"Pressed 2");
PowerView *pschoolView = [[PowerView alloc] init];
[self hideMenu];
[self.puView addSubview:pschoolView];
else if (indexPath.row == 3)
NSLog(@"Pressed 3");
CalendarView *calView = [[CalendarView alloc] init];
[self.puView addSubview:calView];
[self hideMenu];
else
NSLog(@"Error");
//ErrorView *errorV = [[ErrorView alloc] init];
//[self hideMenu];
//[self.puView addSubview:errorV];
【问题讨论】:
【参考方案1】:你还没有加载笔尖,这里是一个日历的例子:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
NSArray *subviewArray = [[NSBundle mainBundle] loadNibNamed:@"CalendarView" owner:self options:nil];
if (indexPath.row == 0)
....
else if (indexPath.row == 3)
NSLog(@"Pressed 3");
CalendarView *calView = [subviewArray objectAtIndex:0];
[self.puView addSubview:calView];
[self hideMenu];
else
NSLog(@"Error");
所以对每个菜单项做同样的事情。
【讨论】:
【参考方案2】:如果您使用故事板控件手动创建 segues 并设置标识符以使用它们调用它们
[self performSegueWithIdentifier:@"IDENTIFIER" sender:nil];
我能想到的最好的:)
【讨论】:
以上是关于从侧面菜单 Segue 主 ViewController的主要内容,如果未能解决你的问题,请参考以下文章