HSImageSidebarViewUIImage
を使用して .pngファイルに白い背景を追加するにはどうすればよいですか?
を作成UIImageView
してサイドバーに表示しようとしましたが、残念ながらアプリは NSException でクラッシュします。サイドバーの画像ファイルUIImage
がUIImageView
.
HSImageSidebarViewUIImage
を使用して .pngファイルに白い背景を追加するにはどうすればよいですか?
を作成UIImageView
してサイドバーに表示しようとしましたが、残念ながらアプリは NSException でクラッシュします。サイドバーの画像ファイルUIImage
がUIImageView
.
@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.