直播商城原始碼,去掉導航條和tabbar線條

zhibo系統開發發表於2023-10-09

直播商城原始碼,去掉導航條和tabbar線條

去掉導航條底部線條

[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
    [self.navigationController.navigationBar setShadowImage:[[UIImage alloc] init]];


去掉tabbar頂部線條

// tabbar裡面有三個內建的image:背景圖片、選中時圖片、陰影圖片,然後修改這三個image
    CGRect rect = CGRectMake(0, 0, SCREENWIDTH, SCREENHEIGHT);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetFillColorWithColor(context, [[UIColor clearColor] CGColor]);
    CGContextFillRect(context, rect);
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    [TBC.tabBar setBackgroundImage:img];
    [TBC.tabBar setShadowImage:img];


其實並沒有刪除橫線(remove掉),只是把它變成透明的不影響操作和介面美觀而已(視覺錯)。

 以上就是 直播商城原始碼,去掉導航條和tabbar線條,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2987577/,如需轉載,請註明出處,否則將追究法律責任。

相關文章