web-dev-qa-db-ja.com

isKindOfClassの使用:このコードがこのように動作する理由がわかりません

-(void)viewWillAppear:(BOOL)animated
{
   [super viewWillAppear:animated];
   UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
   imageView.image = [UIImage imageNamed:@"Sample.png"];
   [self.view addSubview:imageView];
   NSArray *subviews = [self.view subviews];
   for(id element in subviews) {
      if ([[element class] isKindOfClass:[UIImageView class]]) //check if the object is a UIImageView
      {
         NSLog(@"element is a UIImageView\n");
         [element setCenter:CGPointMake(500., 500.)];
      } else {
         NSLog(@"element is NOT a UIImageView\n");
      }
   }
}

出力は「要素はUIImageViewですが、実際には要素はUIImageViewではありません。なぜですか?他のサブビューがあるわけではありません。1つしかありません。さらに、実行すると、画像は500,500ではなく100,100で表示されます。予想通り。

15
Victor Engel

あなたの小切手は間違っています。オブジェクトのクラスではなく、オブジェクトに対してisKindOfClass:を呼び出す必要があります。

[element isKindOfClass:[UIImageView class]]
45
Rahul Wakade

次のコードを試してください。

-(void)viewWillAppear:(BOOL)animated
{
   [super viewWillAppear:animated];
   UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
   imageView.image = [UIImage imageNamed:@"Sample.png"];
   [self.view addSubview:imageView];
   NSArray *subviews = [self.view subviews];
   for(UIView *view in subviews) {
      if ([view isKindOfClass:[UIImageView class]]) //check if the object is a UIImageView
      {
         NSLog(@"element is a UIImageView\n");
         [element setCenter:CGPointMake(500., 500.)];
      } else {
         NSLog(@"element is NOT a UIImageView\n");
      }
   }
}

タグ値でサブビューを確認することもできます。

initially set imageView.tag=101;  //anything you want

for(UIView *subview in [view subviews]) {
    if(subview.tag== 101)/*your subview tag value here*/
     {

 NSLog(@"element is a UIImageView\n");
    } else {
       NSLog(@"element is NOT a UIImageView\n");
    }
}
0