Quote:
Originally Posted by shawn
Also I get a warning at the line where I assign the delegate saying "warning class 'MyViewController' does not implement the 'UITextFieldDelegate' protocol"... any idea how to make this warning go away?
|
Make your view controller implement that protocol would do it :P
Your header should look like
Code:
@interface MyViewController : UIViewController <UITextFieldDelegate>
The HelloWorld example shows how to do this.