我用我的AppDelegate
作爲模型來檢測我的推送通知是否被點擊 - 如果我的View Controller中有一個ViewController被摺疊(使用側欄),我的TableViewCell被選中(這會影響其他視圖控制器) 。我不太使用AppDelegate
,通常使用模型。iOS:是否認爲使用Appdelegate作爲小事物模型的良好設計模式?
@property (nonatomic, assign) NSInteger selectedRow;
@property (nonatomic, assign) BOOL isMenuCollapse;
@property (nonatomic, assign) BOOL notificationWasTapped;
@property (nonatomic, assign) long long pushNotificationId;
+1對於重要思想:應用程序委託應該只是應用程序的代表,而不是其他任何東西。 – gnasher729 2014-10-22 12:09:03