动态改变TabBar

UIImage+TabbarIcon.h
@interface UIImage (TabbarIcon)

/**
 BarItem.image
 @param imageUrl 图片链接
 @return image
 -------------------------------------
 nav.tabBarItem.image = [UIImage imageWithData:data];方式赋值,Xcode会把图片当成@1x,即图片多大tabBarItem就多大。
 所以,将图片存在本地,命名为@2x或@3x,imageWithContentsOfFile:方式进行赋值

 icon链接格式,例如:@"https://gitee.com/Ccfax/HunterPrivateImages/raw/master/navi_study@2x.png"最后以@2x,或@3x结尾。
 */
+ (UIImage *)barItemImage:(NSString *)imageUrl;

@end

UIImage+TabbarIcon.m
#import "UIImage+TabbarIcon.h"

@implementation UIImage (TabbarIcon)

+ (UIImage *)barItemImage:(NSString *)imageUrl{
    NSArray *stringArr = [imageUrl componentsSeparatedByString:@"/"];
    NSString *imageName = stringArr.lastObject;
    NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imageUrl]];
    UIImage *image = [UIImage imageWithData:data];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES);
    NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:imageName];
    // 判断文件是否已存在,存在,删除原文件
    if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
        [[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
    }
    // 将image写入沙河
    [UIImagePNGRepresentation(image) writeToFile:filePath atomically:YES];
    return [UIImage imageWithContentsOfFile:filePath];
}

@end
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容