- 將資源文件拖入項(xiàng)目
- 設(shè)置NSImageView的
animates
為YES - 使用代碼設(shè)置image
- (void)awakeFromNib {
[super awakeFromNib];
self.loginAnimateView.image = [[NSImage alloc] initWithData:
[NSData dataWithContentsOfFile:
[[NSBundle mainBundle] pathForResource:@"xs_login_animate" ofType:@"gif"]]];
}
對(duì)于pathForResource:
加載出來的資源路徑為nil
可以參考這篇文章: Mac開發(fā) - NSBundle 加載資源文件