我UITableView
在左侧滑动条上使用 JTRevealSidebar V2。
我不知道如何通过发送消息推送到其他 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
}
}
}
如何才能做到这一点?