본문 바로가기

about DEV

(23)
Ad-Hoc App Distribution with XCode 4 Xcode4로 개발프로그램을 바꾼지, 꽤 되었는데 정작 빌드/아카이브 등이 많이 달라져서 잘 사용하지 않고 있다가, 애드훅버젼에서는 기존과 같이 단순 빌드로는 안되는 것을 확인하고 부랴부랴 관련 자료를 찾아봤다. 구글링으로 많이도 나와있지만, 정작 너무 긴 설명과 눈에 잘 보이지도 않는 영어 블라블라로.. 그나마 심플하고 알아보기(?)쉬운 원문을 긁어왔다. 이런 아카이브로 하는게 무척 쉽긴 한데... 근데 아직까지, 아이튠즈에 판매등록하는 방식은 기존의 방식이 더 쉬운거 같긴 하다. 아무래도 익숙해서 그렇겠지만... 원문 URL : http://diaryofacodemonkey.ruprect.com/2011/03/18/ad-hoc-app-distribution-with-xcode-4/ So amongst..
Icons and launch images for iPhone and iPad apps Answer: We use the following table for our iPhone/iPad projects when the OS target is 3.2 or above: Name Size (pixels) Platform Icon.png 57 x 57 Universial application icon Icon-settings.png 29 x 29 Universial application icon for settings area. Alternative name: Icon-Small.png Icon-iPad.png 72 x 72 iPad application icon. Alternative name: Icon-72.png Add some smaller (iPad doc: 64×64, other opt..
iPhone SDK - Loading Local file in to UIWebView 선언 부분 NSString *imageName = [[NSBundle mainBundle] pathForResource:@"bkimgb" ofType:@"png"]; NSURL *imageURL = [NSURL fileURLWithPath: imageName]; NSString *url = [[NSString alloc]initWithFormat:@"%@",imageURL]; 사용 부분 ht = [ht stringByAppendingString:[NSString stringWithFormat:@"", url]];
Search and highlight text in UIWebView Several iPhone Apps (like my “iCab Mobile” or “NewsTap” Apps) provide a search feature which allows to search for text in the content that is currently displayed within a UIWebView. The found occurrences of the searched text are highlighted with a yellow background, so the search result can be visually located very easy. This blog post describes how this can be implemented. I’m implementing this..
iPhone SDK 링크기능들 // 이메일 보내기 - (void)sendEmail { NSString *email = [[NSString stringWithString: @"mailto://보낼메일?" "cc=your@mail.com, mail@mail.com" "&subject=하이 방가워요 &body=잘지내요?"] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]]; } // 전화 걸기 - (void)phoneCall { NSLog(@"call msg"); NSString *call = [NSString stringWithFormat:@"t..
Learn Objective-C On the MAC / 터칭 아이폰 SDK 3.0 뭔가 골똘히, 고민에 고민을 거듭해도 해결되지않는 지식 때문에 결국 인터넷 쇼핑만 하게 되버렸다. 책이야 돈아깝다고 생각하진 않지만 그래도 컴퓨터 전문서적의 후덜덜한(?) 가격 덕분에 항상 책을 구입하기에 앞서서 관련 리뷰를 꼼꼼히 살피는 편이다. 그래서 장만했다. Learn Objective-C on the Mac / 터칭 아이폰 SDK SDK관련 서적은 다다음 주부터 예정되어있는 스터디팀의 교재이기 때문에 구입을 했고, Learn Objective-C on the Mac는 현재 거의 다 본 프로그래밍 인 오브젝티브-C 2.0 을 본 후에 OBJ-C에 대한 좀더 깊이있는 공부를 해보고자 하는 마음에 구입을 하게 되었다. Objective-C 2.0(오브젝티브-C 2.0) 카테고리 대학교재 지은이 마크 ..
새롭게 뭔가 시작하기.... 디자인도 하지않고, 뭐하나 달라지는것 없이 지금까지 세월아 네월아 하며 지낸것 같은데... 결정적으로 내가 일을 해결하지않으면 안되는 상황에 봉착하니 미루고 미루던 일을 하게 되더군요 그래서 다시 시작했습니다. Objective-c 기초지식전무, 경험전무 한 상태로 뭔가를 만들어보려고 하는데 삽질의 연속이 되는거 같아서, 결국에는 기초부터 다잡자는 마음으로 공부를 하고 있는 영 수월하지는 않네요. 그래도, 뭔가 배움에 대한 갈증이 오랫만에 샘솓네요. 하나도 모르는 분야에 대한 새로운 도전? C 프로그래밍 카테고리 컴퓨터/IT 지은이 윤성우 (프리렉, 2003년) 상세보기 처음 공부한거는 C에 대한 책이였고, 이책을 1달정도 빠짝보고 내비려뒀는데.. 다 까먹었나봅니다. 그래도, 컴퓨터 언어에 대한 기본적인..