0
我有一個類別可以在應用程序的UINavigationBar中顯示自定義圖像。當應用程序從背景中回來時,圖像有時會消失,我留下的只是一個帶按鈕的白色導航欄。當應用程序從多任務處理回來時,自定義UINavigation圖像消失
我正在使用的類別在下面,有誰能提醒嗎?
@implementation UINavigationBar (CustomImage)
-(void)drawRect:(CGRect)rect {
cardSmartAppDelegate *delegate = (cardSmartAppDelegate *)[[UIApplication sharedApplication] delegate];
[delegate.navImage drawInRect:rect];
}
@end
感謝埃裏克,我會實現你的建議:) – bennythemink