部分的にボタンを配置していますview
... 半分はビューの上にあり、残りの半分は浮いているように見えます。したがって、A がベース ビューであり、B がその上に配置され、このボタンが B の上に追加されている場合、B の上にある部分のボタンをクリックすると、タッチを受け取り、アクションを実行しますが、このタッチが外側にある場合タッチよりもBの領域が実行されていません....ここで何が間違っていますか...?どんな助けでも大歓迎です。
これがボタンの追加方法です。IOSでアプリを削除するのと同じように、ボタンを動的に削除しようとしています。
UIButton *deletButton1 = [UIButton buttonWithType:UIButtonTypeCustom] ;
deletButton1.frame = CGRectMake(25, -5, 30,30);;
deletButton1.backgroundColor = [UIColor clearColor];
deletButton1.tag=1;
UIImage *buttonImageNormal1 = [UIImage imageNamed:@"delete.png"];
[deletButton1 setBackgroundImage:buttonImageNormal1 forState:UIControlStateNormal];
[deletButton1 addTarget:self action:@selector(deleteButton:) forControlEvents:UIControlEventTouchUpInside];
[self.addButton1 addSubview:deletButton1];
これがスクリーンショットです..