2011年2月17日木曜日

UIViewControllerがtouchesに反応しない

viewコントローラの初期化を以下のようにしたら直った。
TestViewController *myController = [[[TestViewController alloc] init]autorelease];
↓変更
TestViewController *myController = [[TestViewController alloc] init];
コントローラを保持していなかったため、解放されていた??
http://akisute.com/2009/10/uiviewcontrollertouchesbegantouchesende.html
autoreleaseはプログラムが終了しなければリリースされないと思っていた??
まだ解らない事多い。

0 件のコメント:

コメントを投稿