我有少量代码,我只想使用某个视图控制器。视图控制器与另一个控制器共享一个类。
是否可以根据 push segue 标识符定位 if 语句?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UIAlertView *messageAlert = [[UIAlertView alloc]
initWithTitle:@"Row Selected" message:@"Added to Routine!" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
我的方法中有一个 IF 语句,prepareForSegue:
但我希望在我的方法中有一个didSelectRowAtIndexPath:
if ([segue.identifier isEqualToString:@"ShowSightingDetails"])
我环顾四周,但看不到任何与此直接相关的东西。
这应该是我认为相当简单的事情。