개발도구 썸네일형 리스트형 아이폰 사설 수리 링크 http://entireboy.egloos.com/4707175 http://www.appleteam.co.kr/front/php/product.php?display_group=1&main_cate_no=26&product_no=50 http://www.apple-zone.co.kr/base/company/aboutus_16.php http://iphonekorea.kr/front/php/newpage.php?code=64 더보기 [iphone[ calender source 아이폰 달력 소스 calender source 1) https://github.com/ocrickard/OCCalendar 2) http://developinginthedark.com/posts/iphone-tapku-calendar-markers 더보기 [iphone] table cell 옵션 //클릭 후 다시 돌아 왔을때 오버 되는거 없애기 [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; //Arrow //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; //셀 클릭안되게 하기- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{ return nil; } 더보기 [아이폰] navigationBar background image or color or text 스토리보드로 변경되면서 알수 없이 힘든게 많다.네비게이션 바 스토리보드 환경에서 커스텀 네비게이션 바 만들기 위의 동영상에서 BACK button 으로 돌아가는 소스는 이렇습니다. -(void)gettoBack:(id)sender{ [self.navigationController popViewControllerAnimated:YES]; } 또한 찾다보니 정리할게 있어 아래 정리해놓습니다. NSInteger red = 95; NSInteger green = 100; NSInteger blue = 130; [self.navigationController.navigationBar setTintColor:[UIColor colorWithRed:red/255.0f green:green/255.0f blue:blu.. 더보기 [아이폰] 아이폰 기기등록, 아이폰 기기 테스트 http://blog.daum.net/komate/168 더보기 [iphone] 공백 제거 1. 공백과 탭 제거(whitespaceCharacterSet) NSString *newString = [oldString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; 2. 공백과 탭 및 개행(newlines) 제거(whitespaceAndNewlineCharacterSet) NSString *newString = [oldString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; 더보기 [iphone] create Json like twiiter json iPhone SDK: First Steps With JSON Data Using the Twitter API http://mobile.tutsplus.com/tutorials/iphone/iphone-json-twitter-api/을이용하여 NSDictionary *contactData = [NSDictionary dictionaryWithObjectsAndKeys: textf1.text, @"value1", textf2.text, @"value2", textf3.text, @"value3", nil]; NSDictionary *finalData = [NSDictionary dictionaryWithObject:contactData forKey:@"contact"]; NSString *newJSON = .. 더보기 [iphone] keyboard 없애기 숨기기 hidden - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch * touch = [touches anyObject]; if(touch.phase == UITouchPhaseBegan) { if ([textf1 isFirstResponder]) { [self.textf1 resignFirstResponder]; }else if ([textf2 isFirstResponder]){ [self.textf2 resignFirstResponder]; // NSLog(@"123"); }else if ([textf3 isFirstResponder]){ [self.textf3 resignFirstResponder]; } } } 위에 보시면 아시겠지만.. 더보기 [iphone] iphone popup table view http://ios.biomsoft.com/tag/popup/ 더보기 [iphone] ios 참고 사이트 iOS 참고 사이트 http://lambert.tistory.com/ : 티스토리 개인블로그 http://cafe.naver.com/mcbugi : 네이버 맥부기 카페 http://developer.apple.com/ : 애플 개발자 센터 http://www.cocoalab.com/?q=becomeanxcoder : Cocoa 와 XCode 입문하기 http://www.cocoadev.co.kr/tag/Cocoa%20Lab. : OS X에서 cocoa 맛보기 http://moogab.com/116259750 : IB 응용의 끝인듯 http://theeye.pe.kr/ : 아이군의 블로그 http://iphoneos.co.kr/ : Korea iOS Developer Group 의 HTTP/HTTPS 통신.. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 45 다음