「CGContextAddEllipseInRect」メソッドを使用して円を描いています。その後、サークルをクリックしていくつかのイベントを処理したいと思います。
このためのメソッドを取得していません。
私を助けてください。
この円をUIViewで描いていると仮定すると、カスタムボタンを作成してビューに追加できます。
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(100, 100, 100, 30);
[yourView addSubView:button];
[button addTarget:self action:@selector(yourEventTobeFired) forControlEvents:UIControlEventTouchUpInside];
それでおしまい。