-1

HSImageSidebarViewUIImageを使用して .pngファイルに白い背景を追加するにはどうすればよいですか?

を作成UIImageViewしてサイドバーに表示しようとしましたが、残念ながらアプリは NSException でクラッシュします。サイドバーの画像ファイルUIImageUIImageView.

4

2 に答える 2

0

@objc-強迫観念

You will need to loop through the subviews to find whether it is of kind UIImage or UIImageView by this:
id object; 
if([object isKindOfClass:[UIImage Class]]) {
     //Do whatever u want to here by creating a new imageView on the top of this image
     //Something like this:
UIImage *image =(UIImage*)object;
UIImageView *imgView=[[uiimageview alloc]initwithimage:image];

//Now perform the background view operations on imgView i.e. instance of UIImageView.
}

//Hope it works.
于 2012-05-03T07:12:30.670 に答える