XCode 버전이 4.2.x 로 변경되면서 폴더가 사라졌고 디버그 모드에서 강제 종료해서 나는 워닝. 신경쓸 필요 없다..??? 가 아니라 사실 해결하고픈데 해결하는 법을 모르겠다.
[XCode] warning!! "SIGKILL"
2011. 1. 18. 14:35
[Objective c] How to update UIProgressView while downloading...
2011. 1. 14. 14:37
To use UIProgressView and update, I will use two methods. One is performSelectorInBackground, another is performSelectorOnMainThread.
At the place you write codes down to get or put something to server(using NSURLConnection or socket program), use performSelectorInBackground.
For example,
CurlFunction *testCurl = [[CurlFunction alloc] initWithPath:@"Elm2"];
testCurl.listDelegate = self;
[test performSelectorInBackground:@selector(startDownloadZipFile) withObject:nil];
Afterward you make codes that NSAutoreleasePool in startDownloadZipFile.
- (void)startDownloadZipFile {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// write code will execute
[pool release];
}
Next, you should use performSelectorOnMainThread where you will update progress of UIProgressView.
- (void)sendSize:(NSNumber*)size {
if ([listDelegate respondsToSelector:@selector(sendSizeOfData:)])
{
[listDelegat performSelectorOnMainThread:@selector(sendSizeOfData:)
withObject:size
waitUntilDone:YES];
}
}
[App Review] Planner S 스티커 다이어리
2011. 1. 12. 16:56
페북/트위터 공유 가능. 캡쳐 이미지로 전송함
글씨체가 이쁘긴 하나 여러개가 아니어서 아쉽. 뭐 스티커 있으니까.
스티커 개수가 적은 관계로 요새 스티커 멘트 공모 이벤트 중.