Go to Organizer and click Projects tab,
and delete duplicate projects.
After opening a Xcode again,
it has indexed and works!!
Go to Organizer and click Projects tab,
and delete duplicate projects.
After opening a Xcode again,
it has indexed and works!!
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardChanged:) name:UITextFieldTextDidChangeNotification object:nil];
2012-01-03 16:27:47.909 Empty[4705:10403] NSConcreteNotification 0x6eb69d0 {name = UIKeyboardDidChangeFrameNotification; userInfo = {
UIKeyboardAnimationCurveUserInfoKey = 0;
UIKeyboardAnimationDurationUserInfoKey = "0.25";
UIKeyboardBoundsUserInfoKey = "NSRect: {{0, 0}, {320, 216}}";
UIKeyboardCenterBeginUserInfoKey = "NSPoint: {160, 588}";
UIKeyboardCenterEndUserInfoKey = "NSPoint: {160, 372}";
UIKeyboardFrameBeginUserInfoKey = "NSRect: {{0, 480}, {320, 216}}";
UIKeyboardFrameChangedByUserInteraction = 0;
UIKeyboardFrameEndUserInfoKey = "NSRect: {{0, 264}, {320, 216}}";
}}
// userInfo 가지고 노닥노닥 하면 프레임이 바뀔때마다 재조정하기 편하지 않을까??
[self.tabBarController.tabBar setFrame:CGRectMake(0, 431, self.tabBarController.tabBar.frame.size.width, self.tabBarController.tabBar.frame.size.height)];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:2.0];
[UIView setAnimationCurve:UIViewAnimationOptionTransitionCurlUp];
[self.tabBarController.tabBar setFrame:CGRectMake(0, 480, self.tabBarController.tabBar.frame.size.width, self.tabBarController.tabBar.frame.size.height)];
[UIView commitAnimations];