項目中: Assigning to 'AppDelegate *' from incompatible type 'id'。
這個警告應該怎麼解決額?
在.m中聲明:
AppDelegate *appdev;
在viewDidLoad中
{
appdev = [[UIApplication sharedApplication]delegate]; <= warning here
}
我想隱藏這個警告,可以麼?
需要隱式指明類型,改成
appdev =(AppDelegate *)[[UIApplication sharedApplication] delegate];