gpt4 book ai didi

iphone - 在完成处理程序中执行选择器不起作用?

转载 作者:行者123 更新时间:2023-11-29 03:48:00 26 4
gpt4 key购买 nike

    [[FHSTwitterEngine sharedEngine]showOAuthLoginControllerFromViewController:self withCompletion:^(BOOL success) {

if(success){

[self performSelector:@selector(goToHome:) withObject:@"twitter"];
}
}];

在 goToHome 方法中,我只是在保存一些数据后将用户发送到其他屏幕。但 goToHome 方法没有从完成处理程序中得到调用。

最佳答案

试试这个

[[FHSTwitterEngine sharedEngine]showOAuthLoginControllerFromViewController:self withCompletion:^(BOOL success) {

if(success){
dispatch_async(dispatch_get_main_queue(), ^{
[self performSelector:@selector(goToHome:) withObject:@"twitter"];
});
}
}];

关于iphone - 在完成处理程序中执行选择器不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17463822/

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