【发布时间】:2013-08-04 09:08:28
【问题描述】:
我将这两个网点添加到我的AppController.j:
@outlet CPWindow theWindow;
@outlet CPWindow thePanel;
theWindow 填满整个浏览器窗口 (setFullPlatformWindow:YES)。
现在我使用CPToolbarItem(在我添加到theWindow 的CPToolbar 中)在点击时执行此方法:
- (IBAction)showPanel:(id)aSender {
// ...
[CPApp runModalForWindow:thePanel];
}
我已经在 Interface Builder 中创建了所有这些 UI 元素。
当我关闭 thePanel 时,theWindow 似乎卡住了 - 无法单击按钮或以任何其他方式与 theWindow 中的元素交互。
这里出了什么问题?
【问题讨论】:
标签: cappuccino