こんにちは私のアプリケーションでは、私は配列を持っています。その中で私はUIViewとUIImageViewコンポーネントの数を持っていて、その配列から各コンポーネントをフェッチしたいので、それがimageviewであるかviewであるかを知る必要があります、それがimageviewである場合、私はそのimageviewの画像を変更する必要があります。コンポーネントがimageviewであるかviewであるかを知る方法についてのアイデア。誰か知っているなら、コンポーネントタイプを認識する方法を教えてください。この問題で私を助けてください。
for (int i=0; i<[array count]; i++){
// here i have to know wether the component is imageview or view and based on that i have to do below operations
UIView *view1=[array objectAtIndex:i];
NSLog(@"%@",[array objectAtIndex:i]);
if (130==view1.tag){
view1.backgroundColor=[UIColor redColor];
}
UIImageView *image1=[array objectAtIndex:i];
if (132==image1.tag){
image1.image=[UIImage imageNamed:@"Approve2.png"];
}
}