在 AppDelegete.m中聲明:
+(AppDelegate*) sharedDelegate
{
return(AppDelegate*)[ [UIApplication sharedApplication]delegate];
}
AppDelegate *appDelegate;
appDelegate=[AppDelegate sharedDelegate]; <= warning
但是系統報出警告:"Class method '+sharedDelegate' not found - return type defaults to id"
不知道怎麼隱藏這個警告?謝謝
先在 頭文件 中聲明方法
在使用的地方導入 AppDelegate.h :
AppDelegate *appDelegate;
appDelegate = [AppDelegate sharedDelegate];