1

通常、以下のように UAModalPanel を初期化すると、正常に動作します。

modalPanel = [[[UAExampleModalPanel alloc] initWithFrame:self.view.bounds withView:@"modalPanel_iPhone"] autorelease];
[self.view addSubview:modalPanel];
modalPanel.delegate = self;
[modalPanel showFromPoint:modalPanel.view.center];

しかし、最初の行を下に変更しようとすると、Xボタンをクリックしてサブビューを閉じることができません。私は何を間違っていますか?

modalPanel = [[[UAExampleModalPanel alloc] initWithFrame:CGRectMake(10,10,100,100) withView:@"modalPanel_iPhone"] autorelease];
4

1 に答える 1