我可以使用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 变量的值(已从前一个视图控制器传递给此视图控制器)来调用数据库方法。
有任何想法或建议如何做到这一点? 提前谢谢。
答案 0 :(得分:1)
修改变量时调用didSet
观察者(初始化变量时不调用它)。设置 cellName 时初始化数据库:
<强>夫特:强>
var cellName : String = "" {
didSet {
// The cell name has been set, create the database here as in any other function
}
}
<强>目标-C:强>
它在目标C中非常相似,但您没有didSet
观察者,而是使用自定义设置器。唯一的区别是,因为它是一个设定者,你必须设置你的变量
@property(nonatomic, strong) NSString * cellName;
-(void)setCellName:(NSString *)newValue
{
// First, set the new value to the variable
_cellName = newValue;
// The cell name has been set, create the database here
}
答案 1 :(得分:0)
if ([[segue identifier] isEqualToString:@"SessionToWorkout"])
{
UITableViewCell *cell = sender;
// Get reference to the destination view controller
WorkoutsViewController *vc = [segue destinationViewController];
NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
//you can get cell value in didSelectRowAtIndexPath fun
cellName = cell.textLabel.text;
NSString *sectionTitle = [self tableView:self.tableView titleForHeaderInSection:indexPath.section];
sectionName = sectionTitle;
[vc setSectionName: sectionName];
[vc setCellName: cellName];
//check it have right value
NSLog(@"Cell name %@ Section name %@", cellName ,sectionName);
//*** in viewControllerB set sectionName, cellName as @property and set it to @synthesize
}