좀 더 자세한 내용은 [ 여기 ] 에 있습니다..^^
첫 등록이라 이것 저것 갖추지 못한점도 있지만 계속 수정하면서 업데이트 해야죠.
아직 버그가 좀 있지만...
수정된 버젼은 오늘 등록할테니 곧 적용 되겠죠..
아이튠즈 링크는 http://itunes.apple.com/kr/app/spdial/id347894385?mt=8 입니다.
그럼 좋은 하루 되세요..!!
Posted by 마르스
Posted by 마르스
-(void) myTestThread:(id)anObject {
NSAutoreleasePool *autoreleasepool = [[NSAutoreleasePool alloc] init];
//이곳에 처리할 코드를 넣는다.
[autoreleasepool release];
[NSThread exit];
}
그리고 쓰레드를 호출한다.
[NSThread detachNewThreadSelector:@selector(myTestThread:) toTarget:self withObject:nil];
간단~
Posted by 마르스
Posted by 마르스
- (void)viewDidLoad {
[super viewDidLoad];
UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectZero];
label1.tag = 100;
[self.view addSubview:label1];
}
- (void) applyUser {
UILabel *label1 = (UILabel *) [self.view viewWithTag:100];
label1.text = "MARS";
}
Posted by 마르스
Posted by 마르스
Posted by 마르스

Posted by 마르스
냉정함을 잃지말자...!!
- 마르스