@interface WinesViewController : UITableViewController <UIActionSheetDelegate> {
NSMutableArray *sortedObjects;
}
在上面的代碼中,UIActionSheetDelegate協議添加,因爲我使用UIActionSheet排序的TableView中,它需要一個委託。 現在我在DetailViewController中添加一個SwipeGestureRecognizer,以便從Detail View中訪問TableView中的下一個單元格。我使用的教程告訴我爲TableViewController中的DetailViewController添加一個委託協議。它告訴我以與我已經添加UIActionSheetDelegate完全相同的方式添加它,那麼現在如何爲DetailViewController添加委託?添加鑑於更委託協議使用的XCode 4
多個協議由逗號分隔,如下所示@Stretch – tGilani 2012-07-14 04:49:13