gpt4 book ai didi

IOS - 从父级在模态视图中调用函数

转载 作者:行者123 更新时间:2023-11-29 12:50:55 24 4
gpt4 key购买 nike

我正在努力从父屏幕调用模态视图中的函数。

我已经在模态视图中设置了一个函数。 m 文件如下 -

-(void)setGoal:(NSString*)setGoal
{
_bals = setGoal;
NSString* result = [NSString stringWithFormat:@"%@", _setType];

_display.text = result;
}

我试图通过以下方式从父 View 触发此功能 -

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
editGoalViewController *destViewController = segue.destinationViewController;
if ([segue.identifier isEqualToString:@"goalInfo"])
{

[segue.destinationViewController setYourGoalViewController:self];
[segue.destinationViewController setGoal:100];

}
if ([segue.identifier isEqualToString:@"longGoalInfo"])
{
[segue.destinationViewController setYourGoalViewController:self];
[segue.destinationViewController setGoal:100];
}
}

但我收到一条错误消息,指出“没有已知的选择器 setGoal 实例方法”——我不明白!欢迎任何提示!

截图-

enter image description here

最佳答案

您无法调用该方法,因为编译器无法将您的 destinationViewController 识别为与您预期的 UIViewController 相同的类。

segue.destinationViewController 的每次调用替换为 destViewController。所以你的代码将是

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
editGoalViewController *destViewController = segue.destinationViewController;
if ([segue.identifier isEqualToString:@"goalInfo"])
{

[destViewController setYourGoalViewController:self];
[destViewController setGoal:100];

}
if ([segue.identifier isEqualToString:@"longGoalInfo"])
{
[destViewController setYourGoalViewController:self];
[destViewController setGoal:100];
}
}

关于IOS - 从父级在模态视图中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22460610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com