일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- XML
- iphone
- 톰켓
- 한글
- MySQL
- Tomcat
- C#
- Objective C
- udp
- UIWebView
- java
- jQuery
- ios
- jsp
- 인코딩
- 이클립스
- HTML
- Eclipse
- 메모리
- Android
- WebView
- spring
- ipad
- 티스토리 초대
- permgen space
- JavaScript
- Memory
- Database
- encoding
- 티스토리 초대장
- Today
- Total
목록전체 글 (110)
suroMind
출처 : 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. 사용방법..
self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"패턴이미지"]];
출처 : http://www.cocoadev.co.kr/tag/RSS HTTP 로 데이터를 전송 받을 때 한글이 깨어지는 경우가 있었다. 아래와 같이 넘어온 데이터의 인코딩을 변경 해 주면 된다 receiveData 는 HTTP 요청 후 받은 데이터(NSData) NSString *str = [[NSString alloc] initWithData:receiveData encoding:0x80000000 + kCFStringEncodingDOSKorean]; NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding]; 다시 NSString으로 변경 해서 출력 해 보면 잘 나온다.
i n v i t a t i o n 티스토리 초대장 + 남은 초대장 수 : 10 안녕하세요! 티스토리에 보금자리를 마련하시려는 여러분께 초대장을 배포해 드리려고 합니다. 나만의, 내 생각을, 내 기억을 담는 소중한 블로그를 만들고 싶다면 티스토리로 시작해보세요! 티스토리 블로그는 초대에 의해서만 가입이 가능합니다. 원하시는 분은 댓글에 E-mail 주소를 남겨주시면 초대장을 보내드립니다. 남겨주실 때에는 꼭 비밀댓글로 남겨주세요! 초대장을 보내드리고 바로 개설하시지 않으신 분들은 초대장을 회수할 수도 있으니 바로 개설해주세요! Yes 이런 분들께 드립니다! 1. 다른 블로그를 사용해보셨던 분 2. 이메일 주소가 정상적인 분 3. 블로그를 시작하려는 이유를 남겨주신 분! No 이런 분들께 드리지 않아요! ..
아이폰을 개발하다 보면 회전을 한다든지 세로 또는 가로 고정으로 해야 할 때가 있습니다. 아래 코드는 UIViewController 에서 모든 방향으로 회전이 가능한 코드입니다. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return YES; } UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight retu..
출처 : http://rainyi.net/tc/ http://michael.stapelberg.de/cCSVParse http://www.cocoacontrols.com/platforms/ios/controls/ddpagecontrol http://iphonedevelopment.blogspot.com/2010/05/custom-alert-views.html http://joris.kluivers.nl/iphone-dev/?p=CustomAlert : ID/PW 입력 http://stackoverflow.com/questions/833392/showing-a-alertview-with-a-textbox-in-iphone http://www.cocoacontrols.com/platforms/ios/cont..
출처 : 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..
Visual Studio 2010에서 테스트하였습니다. using System; using System.Runtime.InteropServices; namespace WindowsFormsApplication2 { public class Win32 { #region 사운드 관련 [DllImport("winmm.dll")] public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume); [DllImport("winmm.dll")] public static extern int waveOutSetVolume(IntPtr hwo, uint dwVolume); public static void SetSoundVolume(int volume) { ..