2011-12-03 14 views

答えて

1

あなたはUIImageViewを使用している場合、まず最初にこのコード

UIImage *defaultImage = [UIImage imageNamed:@"default.png"]; 

を使用してUIImageオブジェクトを作成し、それはあなたのビューコントローラあなたの財産である場合UIImageViewオブジェクトにそれを渡すことですあなたのビューコントローラで新しいUIImageViewのインスタンスを作成している場合は、この

012を使用することができます

self.imageView.image = defaultImage; 

(ImageViewのはUIImageViewの変数名です)これを使用することができます

UIImageView *imageView = [[UIImageView alloc] initWithImage:defaultImage]; 
+0

ありがとうございました:) – Bruno

0
UIImageView *theImageView; 
//assuming that's the declaration in your header 

//make sure default1.gif is inside your application bundle 

//copied into the resources folder of your xcode project 

//this code goes into your -viewDidLoad method 

theImageView.image = [UIImage imageNamed:@"default1.gif"]; 
+0

ありがとうございました。 – Bruno

関連する問題