chown USER_NAME /DIR_PATH/
chown USER_NAME -R /DIR_PATH/
-Rをつけることで指定ディレクトリ以下の全てのディレクトリ、ファイルの所有者を変更します。 physical therapy chicago…
IBOutlet UIImageView *bgImage;
@property(nonatomic,retain) IBOutlet UIImageView *bgImage;
上記のようなbgImageがInterfaceで宣言され、Interface Builder上に、UIImageViewが配置されているとすると以下のように実装すれば、該当箇所に画像が挿入されます。もしくは、以下のようにします。bgImage.image = [UIImage imageNamed:@”bg.png”];
UIImage *image = [UIImage imageNamed:@”bg.png”];
[bgImage setImage:image];
この投稿へのコメント
コメントはまだありません。