IOS UI 학습 튜 토리 얼 사용 UIImageView 컨트롤 애니메이션 만 들 기
2162 단어 IOSUIUIImageView컨트롤
자원 목록 에 tomcat 그림 40 장 을 추가 합 니 다:이름 은 cat 입 니 다.eat 0000.jpg 에서 cateat0039.jpg。
1.필요 한 컨트롤 정의
// , 、
UIButton *actionbuttom;
UIImageView *imageMove;
NSMutableArray *imgsarray;
2.각 컨트롤 초기 화
// image
// UIImageView, View
imageMove = [[UIImageView alloc]initWithFrame:self.view.frame];
// UIImageView
imageMove.image = [UIImage imageNamed:@"cat_eat0000.jpg"];
// UIImageView
[self.view addSubview:imageMove];
// UIImageView yes
imageMove.userInteractionEnabled = YES;
//
//
actionbuttom = [[UIButton alloc]initWithFrame:CGRectMake(100, 680, 218, 50)];
//
actionbuttom.backgroundColor = [UIColor yellowColor];
//
[actionbuttom setTitle:@" " forState:UIControlStateNormal];
//
[actionbuttom setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
//
[actionbuttom addTarget:self action:@selector(startmove:) forControlEvents:UIControlEventTouchUpInside];
//
[imageMove addSubview:actionbuttom];
// ,
imgsarray = [[NSMutableArray alloc]initWithCapacity:40];
// , imgsarray。
for (int x=0; x<40; x++) {
NSString *imgname = [NSString stringWithFormat:@"cat_eat00%.2d.jpg",x];
UIImage *img = [UIImage imageNamed:imgname];
[imgsarray addObject:img];
3.설정 버튼 으로 애니메이션 재생
//
-(void)startmove:(id)sender{
//
imageMove.animationDuration = 2;
//
imageMove.animationImages = imgsarray;
// ,0 ,1 1
imageMove.animationRepeatCount = 1;
//
[imageMove startAnimating];
}
이상 은 본 고의 모든 내용 입 니 다.UIImageView 컨트롤 을 사용 하여 애니메이션 을 만 드 는 것 을 배 우 는 데 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
IOS에서 ReplayKit 및 RTC 사용 방법응용된 소리와 아나운서의 소리를 포함한다.이 두 가지 수요를 감안하여 우리는 스크린 공유를 하는 생방송에 필요한 미디어 흐름을 간단하게 분석할 수 있다. 만약 우리가 Audio App과 Audio Mic를 두 개의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.