我正在使用线程调用我的函数“initialGetMethod”
[NSThread detachNewThreadSelector:@selector(initialGetMethod) toTarget:self withObject:nil];
我的get方法是
-(void) initialGetMethod
{
self.loginPassword = [[ UIAlertView alloc] initWithTitle:@"Please Login to MFP" message:@"Enter Valid UserID and Password" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Cancel", nil];
[self.loginPassword setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];
[self.loginPassword setTag:2];
[self.loginPassword show];
}
但它给出了异常“试图从主线程或网络线程以外的线程获取网络锁。这可能是从辅助线程调用 UIKit 的结果。”
它在“[self.loginPassword setAlertViewStyle:UIAlertViewStyleLoginAndPasswordInput];”处给出异常
如果我将该函数称为“[self initialGetMethod];” 它没有给出例外,但需要一些时间..
我尝试在后台加载,但它不工作..(意味着我不希望它在后台)..
请提出一些解决方案..