我需要访问所有 ViewControllers 中的 appDelegate 变量。所以当我需要它时,我正在写
AppDelegate *appDelegate=(AppDelegate *)[[UIApplication sharedApplication]delegate];
appDelegate.name=x; //warning :Local declaration of appDelegate hides instance variable.
我在方法中必要的地方访问 appDelegate 变量。但是我收到很多警告..我怎样才能避免它们?