2011-02-16から1日間の記事一覧

UIViewControllerがtouchesに反応しない

viewコントローラの初期化を以下のようにしたら直った。TestViewController *myController = [[[TestViewController alloc] init]autorelease]; ↓変更 TestViewController *myController = [[TestViewController alloc] init];コントローラを保持していなか…