UIImageView move to CGRect

How to move a value of CGRect ImageView

-- Source --
CGRect new_frame = ImageView.frame;
new_frame.origin.x = 20;
new_frame.origin.y = 10;
[UIView beginAnimations:nil content:nil];
[UIView setAnimationDuration:0.1];
imageView.frmae = new_frame;
[UIView commitAnimations ];

댓글

이 블로그의 인기 게시물

한글 2010 에서 Ctrl + F10 누르면 특수문자 안뜰 때

아이폰에서 RFID 사용하는 방법

VCC 와 GND 는 무엇일까?