我有一个mainViewController,它也是mainView中包含的pickerview的委托。
我还有另一个包含封面流的视图。我想将封面流添加到我的主视图中,并使mainViewController成为委托。我不知道是否有可能。我使用以下内容但没有成功:
@interface MainViewController : UIViewController <UIPickerViewDataSource,
UIPickerViewDelegate, FlowCoverViewDelegate>
我不知道这只是一个语法问题还是我需要做的事情。
答案 0 :(得分:3)
我不完全理解什么是coverflow :)但是要将MainViewController声明为委托,你需要使用这样的东西:
@interface MainViewController: UIViewController<UIPickerViewDelegate, AnyOtherDelegate1, AnyOtherDelegate2, AnyOtherDelegate3>