comparison src/video/uikit/SDL_uikitview.m @ 2425:491958a6c881 gsoc2008_iphone

Removed log messages (printf and NSLog)
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Fri, 15 Aug 2008 00:42:14 +0000
parents ab89ff6e97af
children 96124abbcede
comparison
equal deleted inserted replaced
2424:ecc18fbfdec3 2425:491958a6c881
142 return keyboardVisible; 142 return keyboardVisible;
143 } 143 }
144 144
145 /* UITextFieldDelegate related methods */ 145 /* UITextFieldDelegate related methods */
146 - (void)initializeKeyboard { 146 - (void)initializeKeyboard {
147 147
148 NSLog(@"Text field init");
149
150 textField = [[UITextField alloc] initWithFrame: CGRectZero]; 148 textField = [[UITextField alloc] initWithFrame: CGRectZero];
151 textField.delegate = self; 149 textField.delegate = self;
152 /* placeholder so there is something to delete! */ 150 /* placeholder so there is something to delete! */
153 textField.text = @" "; 151 textField.text = @" ";
154 152