1、UIApplication(應用程式實例) 獲取方式:[UIApplication sharedApplication] 詳細:http://www.cnblogs.com/hissia/p/5678518.html 2、NSNotificationCenter(消息中心) 獲取方式:[NSNo ...
1、UIApplication(應用程式實例)
獲取方式:[UIApplication sharedApplication]
詳細:http://www.cnblogs.com/hissia/p/5678518.html
2、NSNotificationCenter(消息中心)
獲取方式:[NSNotificationCenter defaultCenter]
常用的通知模式
3、NSFileManager(文件管理)
獲取方式:[NSFileManager defaultManager]
4、NSUserDefaults(偏好設置)
獲取方式:[NSUserDefaults standardUserDefaults]
詳細:http://www.cnblogs.com/hissia/p/5642405.html
5、NSURLCache(請求緩存)
獲取方式:[NSURLCache sharedURLCache]
6、NSHTTPCookieStorage(應用程式cookies池)
獲取方式:[NSHTTPCookieStorage sharedHTTPCookieStorage]
7、NSURLSession(發送請求時候用的)
獲取方式:[NSURLSession sharedSession]
8、UIMenuController(彈出的菜單可以選擇,複製,剪切,粘貼的功能)
獲取方式:[UIMenuController sharedMenuController]
詳細:http://www.cnblogs.com/hissia/p/5668513.html