Hi all,
I'm really desperate, I hope someone can help me.
Here the facts:
I wrote an application with Three20 for iPad, everything works fine, I was going to consolidate when I decide to upgrade to Xcode 4.3.
The app start with a simple login form it's a TTViewController with two simple UITextField. I add it by code here the example:
login = [[UITextField alloc] initWithFrame:CGRectMake((scrollView.width/2)-250/2, 150, 250, 30)];
login.borderStyle = UITextBorderStyleRoundedRect;
login.textColor = [UIColor blackColor];
login.font = [UIFont systemFontOfSize:17.0];
login.placeholder = @"Login";
login.backgroundColor = [UIColor whiteColor];
login.autocorrectionType = UITextAutocorrectionTypeNo;
login.keyboardType = UIKeyboardTypeDefault;
login.returnKeyType = UIReturnKeyDone;
login.clearButtonMode = UITextFieldViewModeWhileEditing;
[login setDelegate:self];
Now every time I click on the textfield to type the login the app crashes. Sometimes I have no feed back sometimes it gives me : sqlite3_prepare 'SELECT name, size, width, height, bpr, format FROM store WHERE key=?' failed: 'no such table: store'
Now google it a bit I don't find much, I already reset my simulator. So I try with the simple sample TTCatalog, and when I click on the textfield it crashes as well.
I really desperate because the dead line is so close now. I have to try go roll back to XCode 4.2.1, but any suggest before do it?
thank you very much
nibe
It looks like you're new here. If you want to get involved, click one of these buttons!