0

UIView からインジケーター サブビューを削除しようとしていますが、サブビューだけでなく、両方とも削除されます。

私の意見は次のとおりです。

 UIView * aView = [[UIView alloc] initWithFrame:CGRectMake(0.5*winSize.width-winSize.width/3, 0.85*winSize.height , winSize.width/1.5, winSize.width/8)];
    aView.backgroundColor = [UIColor clearColor];
    aView.tag  = 31000;
    UIActivityIndicatorView  *av = [[[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
    av.frame=aView.bounds;
    [av setBackgroundColor:[UIColor colorWithRed:0.23 green:0.23 blue:0.23 alpha:0.85]];
    av.layer.cornerRadius=4;
    av.tag = 31001;
    [aView addSubview:av];
    [[[CCDirector sharedDirector]view]addSubview:aView];
    [av startAnimating];

ここで見つけた多くの方法でそれを削除しようとしました:

 UIActivityIndicatorView *tmpimg = (UIActivityIndicatorView *)[[[CCDirector sharedDirector]view] viewWithTag:31001];
    if(tmpimg)
        [((UIView *)tmpimg) removeFromSuperview];

また

   UIView *removeView;
    while((removeView = [[[CCDirector sharedDirector]view] viewWithTag:31001]) != nil)
    {
        [removeView removeFromSuperview];
    }

また

 UIView * aView = [[[CCDirector sharedDirector]view] viewWithTag:31000];
    if(aView)
        for(UIView *subview in [aView subviews])
            [subview removeFromSuperview];

しかし、それは常にそれらの両方を削除します...私は迷っています..

4

1 に答える 1