'iDev'에 해당되는 글 210건
- 2010.06.27 [iOS Dev] 화면 전환 감지, orientation
- 2010.04.25 [iPhone SDK] indicator 사용법
- 2010.04.25 [iPhone SDK] Screen Capture
- 2010.03.05 [android] view hidden method
- 2009.04.12 공부합시다 - iphone app 스탠포트 대학 동영상 강의
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
indicator.hidesWhenStopped = YES;
[self.view addSubview:indicator];
indicator.hidesWhenStopped = YES;
[self.view addSubview:indicator];
[indicator startAnimating];
[indicator stopAnimating];
[indicator stopAnimating];
뺑글뺑글 돌아가는 indicator 사용방법
댓글을 달아 주세요
CGImageRef screen = UIGetScreenImage();
UIImage* screenImage = [UIImage imageWithCGImage:screen];
CGImageRelease(screen);
UIImage* screenImage = [UIImage imageWithCGImage:screen];
CGImageRelease(screen);
댓글을 달아 주세요
iPhone
view.hidden = YES or NO;
android
view.setVisibility(0 or 4);
왜 레퍼런스엔 int 0, 1, 2로 나와 있을까. 이것때문에 하루죙일 삽질.
머리가 나쁘면 손발이 고생!
view.hidden = YES or NO;
android
view.setVisibility(0 or 4);
왜 레퍼런스엔 int 0, 1, 2로 나와 있을까. 이것때문에 하루죙일 삽질.
머리가 나쁘면 손발이 고생!
댓글을 달아 주세요
http://deimos3.apple.com/WebObjects/Core.woa/Browse/itunes.stanford.edu.2024353965.02024599579
댓글을 달아 주세요