私はこのような楕円形のサッカー場を作成する必要があります
しかし、iPhoneでこれを実行できるクラス/オブジェクトがわかりませんか?そして、ユーザーがこれに触れると、彼/彼女はサッカーの位置を取得しました。私はたくさんのグーグルをしましたが、成功しませんでした、助けてください!私はUIButtonでこのコードを試しています
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.backgroundColor=[UIColor greenColor];
[button addTarget:self action:@selector(TappeMe) forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"" forState:UIControlStateNormal];
button.frame = CGRectMake(15.0, 10.0, 300.0, 400.0);
button.clipsToBounds = YES;
button.layer.cornerRadius = 130;
button.layer.borderColor=[UIColor redColor].CGColor;
button.layer.borderWidth=3.0f;
[self.view addSubview:button];
私はこの出力を得ました
前もって感謝します