我在哪里可以找到 UIController 的标识符(参见下面代码中的“xxx”)?
我尝试了一切都没有奏效,我一直在寻找没有人提到从哪里得到它......听起来很明显但我不知道......
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard"
bundle:nil];
BookMenuController* bookControll = [sb instantiateViewControllerWithIdentifier:@"xxx"];
bookControll.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:bookControll animated:YES];
}