文章列表
大家都知道全屏需要调用方法:[window toggleFullScreen:sender];
但是有些时候不生效,这时需要在初始化的时候设置window的Behavior,如下
[window setCollectionBehavior: NSWindowCollectionBehaviorFullScreenPrimary];
之后再调用:[window toggleFullScreen:sender] 即可生效.
AppDelegate中实现NSWindowDelegate
里面需要监听两个方法,作为自己内部场景交替或者布局的变更.
- (void)windowWillEnterFu ...
大家好,在项目中碰到如下问题:
hibernate 映射表的时候使用联合主键
例子如下:
商品表:Item,主键为联合主键ItemId
代码如下
public class ItemId{
@column
Long itemId;
@column
Long userId;
}
@Table(...)
public class Item{
@Id
...