일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- iphone
- HTML
- 이클립스
- encoding
- ios
- 메모리
- UIWebView
- JavaScript
- WebView
- jsp
- Memory
- jQuery
- XML
- Tomcat
- Android
- 인코딩
- spring
- Objective C
- java
- udp
- 티스토리 초대장
- Database
- C#
- permgen space
- 티스토리 초대
- 한글
- MySQL
- 톰켓
- ipad
- Eclipse
- Today
- Total
목록ipad (8)
suroMind
출처 : http://blueamor.tistory.com/884 한글체에 Bold를 적용할려고 보니 iOS 기본 글꼴체로는 되지 않았다. 한글 폰트를 추가로 등록하여 커스텀 폰트를 사용하면 적용이 된다. 1. 먼저 폰트를 추가하여야 한다. 본인은 인터넷에 있는 무료폰트인 헤움폰트를 이용해서 테스트해 보았습니다. 해당 파일을 XCode에 추가 시킨 후 plist 파일로 가서 아래처럼 추가시킨다. 2. 해당 글꼴의 이름을 알아야 합니다. 저는 해당 시스템의 글꼴을 검색해서 알아왔습니다. for (NSString *familyName in [UIFont familyNames]) { NSLog(@"%@ : [ %@ ]", familyName, [[UIFont fontNamesForFamilyName:famil..
출처 : http://www.prapps.net/514 * import //트랜잭션 시작 [CATransaction begin]; [CATransaction setValue:[NSNumber numberWithBool:YES] forKey:kCATransactionDisableActions]; [CATransaction setValue:[NSNumber numberWithFloat:0.5f] forKey:kCATransactionAnimationDuration]; //실행되는 시간 // Animation 설정 CATransition *push = [CATransition animation]; [push setType:kCATransitionMoveIn]; //Animation 타입 push.subtype..
iOS에서 AvAudioPlayer는 기본적으로 MP3 Streaming을 지원하지 않고 Local File만을 지원합니다. 그래서 원격지에 있는 음악파일을 재생시에는 다운 받아서 재생을 해야겠지요.. 스트리밍이 지원되는 라이브러리가 없을까 찾아보다가 아래와 같은 사이트 검색... https://github.com/mattgallagher/AudioStreamer 라이브러리와 사용하는 샘플 예제가 같이 들어 있습니다. 어렵지 않게 사용하 실 수 있을 겁니다. 예제 속에는 슬라이더를 이용한 프로그레스 진행상황을 알 수있는 부분과 특정 위치 이동하는 기능등 필요한 부분은 다 구현되어 있습니다. 다만 한가지 스트리밍이 종료될 시점에 현재 재생시간을 알아오는 부분이 문제가 좀 있더군요.. 음악은 처음 부터 끝까..
개발을 할 때에 http로 자료를 송수신할 때 JSON이나 XML을 많이 씁니다. 저는 JSON을 더 선호하긴 하지만 XML도 할 때가 많습니다. iOS에 기본적으로 탑재되어 있는 NSXMLParser는 쓰기가 넘 힘들더군요..헷갈리기도 하고. 검색해보니 TBXML이란 놈이 있더군요.. 속도도 빠르고 메모리도 적게 먹습니다.. 사용방법도 NSXMLParser보다 몇배는 더 간결.. 1. 아래 사이트에서 라이브러리를 다운 받습니다. -- TBXML.zip http://www.tbxml.co.uk/TBXML/Changes.html 2. 추가할 라이브러리 NSDataAdditions.h NSDataAdditions.m TBXML.h TBXML.m - frameworks에 libz.dylib 추가 3. 사용방법..
아이폰을 개발하다 보면 회전을 한다든지 세로 또는 가로 고정으로 해야 할 때가 있습니다. 아래 코드는 UIViewController 에서 모든 방향으로 회전이 가능한 코드입니다. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return YES; } UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight retu..
출처 : http://wkqqn.tistory.com/archive/20110711 기존에 user-agent 변경하는 방법을 Swizzle을 이용해서 변경했었는데 iOS 5로 업데이트 되면서 변경이 안되었다. 물론 앱스토어에 올라가 있는 앱들이 제대로 되지도 않고.. 그래서 찾아보다가 한참을 헤매었는데 위 블로그에서 아래와 같은 방법을 찾았다. AppDelegate.m 파일에 아래 코드를 넣으면 됩니다. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { NSString *deviceModel = [[UIDevice currentDevice].model st..
from xguru in twitter https://github.com/digdog/DDActionHeaderView http://code.google.com/p/oauthconsumner/ http://code.google.com/p/mpoauthconnection/ http://getsharekit.com/ http://code.google.com/p/nate-ios-client-api/ https://github.com/facebook/facebook-ios-sdk http://code.google.com/p/cocoaasyncsocket/ https://github.com/enormego/cocoa-helpers https://github.com/woohj70/iPhotoDiary https:/..
출처 : http://louise.tistory.com/70 어플리케이션 아이콘(Application Icons) Icon.png (57 x 57 pixels) - iPhone and iPod Touch Icon-ipad.png (72 x 72 pixels) - iPad Icon@2x.png 114 x 114 Icon-Small.png 29 x 29 Icon-Small@2x.png 58 x 58 Icon-Small-50.png 50 x 50 둥글게 처리 X shine, gloss 이펙트 X 알파 투명도 X 참조 : http://glyphish.com/ 검색이나 설정에 사용되는 아이콘(Small Icons) - 없어도 됨. Icon-Small-50.png (50 x 50 pixels) - iPad Icon..