阿里百川即时通讯ios修改气泡样式
回 楼主璐丫头的帖子
自定义样式时,推荐使用自定义的资源 bundle,bundle 内仅放如要覆盖的资源文件,然后需要程序中进行 bundle 注册。
Demo 中便示例使用了自定义资源 bundle —— CustomizedUIResources.bundle,注册代码:
NSString *bundleName = @'CustomizedUIResources.bundle';
NSString *bundlePath = [[NSBundle mainBundle].resourcePath stringByAppendingPathComponent:bundleName];
NSBundle *customizedUIResourcesBundle = [NSBundle bundleWithPath:bundlePath];
[imkit setCustomizedUIResources:customizedUIResourcesBundle];
在Demo的基础上要替换资源,则也需将资源放在 CustomizedUIResources.bundle 中
赞0
踩0