uiimage是ios開發中存放**的元件,繼承自uiview
uiimage 初始化方法 initwithimage:uiimage
這是乙個初始化uiimageview的方法
uiimage *image = [uiimage imagenamed:@"h.png"];
uiimageview *imgview = [[uiimageview alloc] initwithimage:image];
這樣初始化,按實際大小顯示, 也可以指定的顯示區域
imgview.frame = cgrectmake(30, 30, 280, 300);
這樣就會按區域顯示了
把uiimageview 加入到 viewcontroler上。 [
self
.view
addsubview
:imageview];
- (void)viewdidload
//建立uiimageview
uiimageview *imageview = [[uiimageview
alloc] initwithframe:cgrectmake(30,30, 280, 240)];
//animationimages 這個屬性就是設定多個
imageview.animationimages = imagarray;
[imageview setanimationduration:1];
[self.view
addsubview:imageview];
[imageviewstartanimating];
// do any additional setup after loading the view, typically from a nib.
}這樣就可以看到效果了
UIImageView的一些用法
初始化 uiimageview imageview uiimageview alloc initwithframe cgrectmake 100,200,120,120 需要設定 uiimage 第一種 imageview setimage uiimage imagenamed 1.jpeg 第二種...
UIImageView 7種手勢基本介紹
uiimageview的使用 uiimageview imageview uiimageview alloc initwithframe cgrectmake 0,20,280,300 imageview setbackgroundcolor uicolor redcolor self.view a...
UIImageView動畫顯示
nsautoreleasepool pool nsautoreleasepool alloc init nsarray myimages nsarray arraywithobjects uiimage imagenamed myimage1.png uiimage imagenamed myima...