我正在为警报提示创建一个trigger.io插件。 尝试从警报提示中返回数据。 这是我的代码:
// Prompt
+ (void)show_prompt:(ForgeTask*)task{
// Create the alert
UIAlertView *prompt = [[UIAlertView alloc] initWithTitle:@"Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:@"Cancel", nil];
UITextField *promptTextBox = [[UITextField alloc] initWithFrame:CGRectMake(12, 45, 260, 25)];
[promptTextBox setTag:30050]; // set tag to find the text box
[promptTextBox setBackgroundColor:[UIColor whiteColor]];
[prompt addSubview:promptTextBox]; // add it to the alert
[prompt show]; //show alert
}
// Call back
+ (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex task:(ForgeTask*)task
{
// Grab the reply from text box
UITextField* promptTextBox = (UITextField*)[alertView viewWithTag:30050];
NSLog(@"%@", [promptTextBox text]); // output to log
[task success:nil]; // output call back
}
当我尝试执行 [任务成功:nil]; 并包括任务:(ForgeTask *)任务时,上述操作无效,回拨停止工作
但是 [任务成功:nil]; & 任务:( ForgeTask *)任务 NSLog确实有效。
我如何解决这个问题?
答案 0 :(得分:0)
所以你试图将[promptTextBox text]
返回给调用的JavaScript?
这个怎么样:
NSLog(@"%@", [promptTextBox text]); // output to log
[task success:[promptTextBox text]]; // output call back
......或者我错过了这一点?