모바일개발(Mobile Dev)/IOS개발(ObjectC)109 Using Unwind Segues Technical Note TN2298Using Unwind SeguesThis document provides an overview of unwind segues.IntroductionCreating an Unwind SegueAdding an Unwind Segue to a StoryboardThe Unwind ProcessHow an Unwind Segue Determines its Destination View ControllerResponsibilities for Container View ControllersSelecting a Child View Controller to Handle An Unwind ActionTransitioning Between Two Child View Controll.. 2015. 12. 19. Introduction to Auto Layout written by http://www.appcoda.com/introduction-auto-layout/ july 27, 2014 by ziad tamim 45 commentsEditor’s note: If you’ve downloaded theXcode 6 beta and played around with it, one thing you may notice is the change of Interface Builder. The default view controller is now wider and doesn’t look like an iPhone 5. When you position a button in the center of the view and run the app, it doesn’t lo.. 2015. 12. 16. 아이폰6, 아이폰6+의 해상도 written by http://www.bluejini.net/archives/634 [잡솔] 아이폰6, 아이폰6+의 해상도 2015.11.17 수정. 2편 [잡솔] 아이폰6, 아이폰6+의 해상도 2편 (디자이너의 작업) 을 새로 등록했습니다. 아래의 글이 어려우시면 2편을 참고하시기 바랍니다. 커뮤니티들에서 기획자와 디자이너들을 포함하여 개발자들이 해상도 때문에 괴로워하는 모습을 보게 되었습니다. 물론 기본적인 문제는 기기와 해상도가 늘어남에 따른 검수 작업 증가지만 그보다는 어떻게 작업해야 하는지를 몰라서 멘붕에 빠진 모습이 더 자주 보였습니다. 그래서 관련 포스팅을 한 번 해보려 합니다.한줄 정리 : 알고 보면 간단하다.기존보다 맞춰야 할 해상도는 많아졌지만 어차피 제일 큰 사이즈로 작업 후 리사이.. 2015. 12. 16. textfields Readonly This would be the simplest of all , when you multiple textfields too:in viewDidLoad:(set the delegate only for textfields which should not be editable.self.textfield.delegate=self;and insert this delegate function:- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{ return NO; }Thats it! 2015. 12. 15. ABOUT UIBarButtonItems Create outlet for UINavigationItemand UIBarButtonItems Run following code to remove [self.navItem setRightBarButtonItem:nil]; [self.navItem setLeftBarButtonItem:nil]; Run following codes to add buttons again [self.navItem setRightBarButtonItem:deleteItem]; [self.navItem setLeftBarButtonItem:addItem]; For Hiding:[self.navigationItem.rightBarButtonItem setEnabled:NO];[self.navigationItem.rightBarB.. 2015. 12. 15. Failed to allocate data stores for 854269899 rows in section 0. Consider using fewer rows" Failed to allocate data stores for 854269899 rows in section 0. Consider using fewer rows" in my case , when i use multiple pickerview(not datepickerview) e.g 3 pickerview i need to re-assign tag value in attribute inspectror e.g pickerview 1 - tag value : 1 (not 0) pickerview 2 tag value : 2 (not 0) pickerview 3 tag value : 3 (not 0) 2015. 12. 15. couldn't use prepareForSegue to send some viewcontroller with navigation controller to send some viewcontroller with navigation controller,you can not send with DetailViewController2 *destViewController = segue.destinationViewController (X) -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ([[segue identifier] isEqualToString:@"ShowDetails"]) { // [segue returns a UINavigationController and the controller you // want is embedded in the navigation controll.. 2015. 12. 14. How to Submit Your App How to Submit Your App to Apple: From No Account to App Store, Part 2 Gustavo Ambrozio on January 30, 2012This is a blog post by iOS Tutorial Team member Gustavo Ambrozio, a software engineer with over 20 years experience, including over three years of iOS experience. He is the founder of CodeCrop Software. You can also find him on Google+.Learn how to get your app all the way to the App Store!S.. 2015. 12. 14. splash screen for all types of iPhones in XCode 6.1? 18down votefavorite12I need to create and app which will run on iPhone 4S, 5,5S, 6, 6+ and the depoloyment target will be iOS 7.1. I saw Apple introduced LauchScreens.xib for creating the launch screen (Splash Screen) and also there is an Image Assets in which I can provide the Launch Images screens. See image below:So my questions is how can I use the splash screen for all the iPhones? Or I sho.. 2015. 12. 13. 이전 1 2 3 4 5 6 ··· 13 다음