본문 바로가기

개발도구

[아이폰] itunes store link 로 바로 가기 [UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/kr/app/moneytoday/id508713812?mt=8"]]; 더보기
[아이폰] UIAlertview - iphone alert UIAlertView* customAlert = [[UIAlertView alloc] initWithTitle:@"MoneyTodayPAD" message:@"머니투데이 신문보기는 뉴스가판대 서비스에서 이용하실수 있습니다. 뉴스가판대로 이동하시겠습니까?" delegate:nil cancelButtonTitle:@"확인" otherButtonTitles:nil]; [customAlert show]; [customAlert autorelease]; static BOOL diagStat = NO; //예,아니오 버튼의 상태를 저장할 임시 변수 -(class action){ UIAlertView *confirmDiag = [[UIAlertView alloc] initWithTitle:nil message:@"머.. 더보기
[아이폰] APP IDs 관하여 App IDs 등록 http://www.cyworld.com/bbaeAnalSu/5138123 http://diyga.me/18 더보기
[아이폰] 에러 - the signature was invalid or it was not signed with an iphone distribution certificate 앱 배포하는 가운데 the signature was invalid or it was not signed with an iphone distribution certificate 이러한 에러가 난다. distribute 에 관해 에러 같아서 인정서 올리고 다운받고 모 할짓은 다 해봤지만, 역시 해결은 안된다. 특히 LION 으로 업뎃과 Xcode v.4.3.1로 업뎃이후로는 컴퓨터의 인증서가 일치가 안되는거 같다.. 최종해결 방법은 결국 싹다 지우고 다시 처음부터 하였다. 키체인 login , system모두 삭제 오거나이저 모두 삭제 그 후로 책보고 처음부터 인증서 받고 오거나이져 등록하고 블라 블라... . 하였더니 잘 된다. 더보기
[아이폰] Unity framework 현재 유니티에서 모바일 게임을 만들게 해주는 아이폰,안드로이드 애드온을 무료로 배포중 유니티 Free를 선택하고 마찬가지로 밑에 아이폰과 안드로이드 애드온도 체크를 해주시면 됩니다. 출처(URL) : https://store.unity3d.com/index.html 더보기
[php] twitter 자신의 글 html 에 표출하기 부분에.... 더보기
[아이폰] Document 에 파일 저장과 호출 // 파일 : pokeb-asi-http-request-v1.8.1-78-gf99ca46 (2).zip // 참고 사이트 : http://allseeing-i.com/ASIHTTPRequest/ // 사용 블로그 : http://blog.naver.com/revolution59?Redirect=Log&logNo=140130960809 // http://adolchristin.tistory.com/40 NSURL *url = [NSURL URLWithString:@"http://www.robtowns.com/music/blind_willie.mp3"]; //url stream ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; // ASIHTTP.. 더보기
[아이폰]Document Directory 경로 - 파일 저장 아이폰 데이터 저장공간으로는 Cache, tmp, Documents 가 있다. cache, tmp 는 휘발성으로 임시파일 저장공간이나, document 디렉토리는 백업과 유지가 가능한 저장공간이다. 이 저장공간을 사용하기 위해 (GUID로 생성) 아래의 코드를 이용해 사용할수 있다. * 어플리케이션이 매우 큰 파일을 생성하거나 매우 빈번하게 파일 엑세스를 한다면 /Documents가 아닌 /Library/Caches를 이용하는 것이 좋습니다. /Documents에 저장하게 되면 백업/복원 작업시에 시간이 더 걸리게 되는 문제점이 될 수도 있습니다. document directory 경로 찾기 NSArray* docdir = NSSearchPathForDirectoriesInDomains(NSDocumen.. 더보기
[아이폰] 외국 블로그 각종 오픈 소스공개 http://blog.objectgraph.com/ 더보기
[아이폰] Download an Image and save it as PNG or JPEG in iphone http://iphoneappsmaker.tistory.com/645 NSLog(@"Downloading..."); // Get an image from the URL below UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.objectgraph.com/images/og_logo.png"]]]; NSLog(@"%f,%f",image.size.width,image.size.height); // Let's save the file into Document folder. // You can also change this to your desktop for te.. 더보기