【发布时间】:2013-03-12 20:14:26
【问题描述】:
我正在使用 JTRevealSidebar V2,左侧滑动条上带有 UITableView。
我不知道如何通过发送消息来推送到其他 ViewController。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
if (self.sidebarDelegate) {
NSString *text = [self.leftList objectAtIndex:indexPath.row];
if ([text isEqual:@"Warenkorb"]) {
NSLog(@"Ist warenkorb");
// How to push/create/bring2top view of msCartViewController Identified by "Cart"?
// NSLog works
}
}
}
如何做到这一点?
【问题讨论】: