Adding More Than 2 Delegates in iPhone App

后端 未结 1 1772
星月不相逢
星月不相逢 2021-01-15 05:53

This is a simple question that can be answered fast by someone who\'s more familiar with Objective-C than I am- how can one add more than 2 delegates to a Class?

To

相关标签:
1条回答
  • 2021-01-15 06:31

    The correct declaration for a class that implements multiple protocols is a comma separated list

    @interface ViewController : UIViewController <UIWebViewDelegate, UITextFieldDelegate>
    { ...
    
    0 讨论(0)
提交回复
热议问题