我可以使用 prepareForSegue 方法在两个视图控制器之间传递数据。但是这样一来,传递的数据就不能在第二个视图控制器的init方法中使用了。
另外,我正在使用 XLForm。因此在 init 方法中访问数据是必要的。
谁能帮我解决这个问题。
这是第一个视图控制器的 prepareForSegue 方法:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@"SessionToWorkout"])
{
WorkoutsViewController *vc = [segue destinationViewController];
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
UITableViewCell *selectedCell = [self.tableView cellForRowAtIndexPath:indexPath];
cellName = selectedCell.textLabel.text;
NSString *sectionTitle = [self tableView:self.tableView titleForHeaderInSection:indexPath.section];
sectionName = sectionTitle;
vc.sectionName = sectionName;
vc.cellName = cellName;
}
}
这是第二个视图控制器的 initWithCoder 方法:
- (instancetype)initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
if (self) {
//Retrieve Workouts from DB
NSString *day_id;
day_id = [[DBHandler database] getDayIdWhere:@[@"day_name"]
whereValues:@[cellName]];
workoutsArray = [[DBHandler database] getWorkoutsForDayWhere:@[@"day_id"]
whereValues:@[day_id]];
AppLog(@"Workouts array %@", workoutsArray);
[self initializeForm];
}
return self;
}
在 initWithCoder 方法中,我需要使用cellName变量的值(已从前一个视图控制器传递给此视图控制器)来调用数据库方法。
任何想法或建议如何做到这一点?提前致谢。