2

「CGContextAddEllipseInRect」メソッドを使用して円を描いています。その後、サークルをクリックしていくつかのイベントを処理したいと思います。

このためのメソッドを取得していません。

私を助けてください。

4

2 に答える 2

0

この円をUIViewで描いていると仮定すると、カスタムボタンを作成してビューに追加できます。

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(100, 100, 100, 30);
[yourView addSubView:button];
[button addTarget:self action:@selector(yourEventTobeFired) forControlEvents:UIControlEventTouchUpInside];

それでおしまい。

于 2012-05-05T11:26:41.133 に答える