iOS 应用界面灰色主题
创始人
2024-03-13 05:13:15

0x00 前提

某些特殊节日,应用需要切换到灰色主题,表达哀思和悼念。


0x01 方案

一种是整体置灰
一种是界面元素(图片和文字)置灰

一、整体置灰
在应用最顶层添加一层灰色滤镜,让整体呈现灰色。
简单点,就是盖上一块灰色蒙板。

直接上代码:

@interface JHGrayDayView : UIView
+ (void)shouldShow:(NSDictionary *)data;
@end@implementation JHGrayDayView// 根据后台返回开关判断
+ (void)shouldShow:(NSDictionary *)data
{BOOL show = [data[@"turnGray"] boolValue];if (!show) {return;}UIWindow *window = /* AppDelegate 的 window; */JHGrayDayView *view = [[JHGrayDayView alloc] initWithFrame:window.bounds];view.translatesAutoresizingMaskIntoConstraints = false;view.backgroundColor = [UIColor lightGrayColor];view.layer.compositingFilter = @"saturationBlendMode";[window addSubview:view];
}// 最顶层视图,承载滤镜,自身不接收、不拦截任何触摸事件
- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent *)event{return nil;
}@end

二、界面元素(图片和文字)置灰

a.把图片转成灰度图

+ (UIImage *)covertToGrayImageFromImage:(UIImage *)sourceImage
{int width = sourceImage.size.width;int height = sourceImage.size.height;CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();CGContextRef context = CGBitmapContextCreate (nil,width,height,8,0,colorSpace,kCGImageAlphaNone);CGColorSpaceRelease(colorSpace);if (context == NULL) {return nil;}CGContextDrawImage(context,CGRectMake(0, 0, width, height), sourceImage.CGImage);CGImageRef contextRef = CGBitmapContextCreateImage(context);UIImage *grayImage = [UIImage imageWithCGImage:contextRef];CGContextRelease(context);CGImageRelease(contextRef);return grayImage;
}

b.把文字颜色转成灰色
使用公式就可以了 Y = 0.299 * r + 0.587 * g + 0.114 * b

+ (UIColor *)covertToGrayColorFromColor:(UIColor *)color
{CGFloat r,g,b,a;[color getRed:&r green:&g blue:&b alpha:&a];CGFloat y = 0.299*r + 0.587*g + 0.114*b;UIColor *gray = [UIColor colorWithRed:y green:y blue:y alpha:a];return gray;
}

0x02 参考

iOS页面灰化-节日


0x03 后续

JHGrayDayView 添加到 window 后,有一些弹窗的层级,可能比 JHGrayDayView 还高,这些弹窗就无法被 灰色 主题覆盖到,要如何处理呢?
你有什么处理方式吗?知道的可以留个言~
不知道的,如果你能加上我的微信(附言:灰色主题)。我可以提供一个思路~


0x04 我的小作品

欢迎体验我的作品之一:小五笔
五笔学习好帮手
App Store 搜索即可~


相关内容

热门资讯

柬埔寨已建立由首相洪玛奈领导的... 新京报讯 据中国驻柬埔寨大使馆援引柬媒消息,2月18日,柬国务大臣兼国家打击网络诈骗委员会秘书长柴西...
(新春走基层)广东侨乡澄海“动... 2月20日,一场年味浓郁的“动物舞林大会”闹春巡演在广东省汕头市澄海区上演。布马舞、龙虾舞、双咬鹅舞...
阿根廷:允许选择“简化所得税申... (来源:吴说)吴说获悉,据阿根廷国家证券委员会(CNV)公告,CNV 批准第 1108 号一般决议,...
腾龙推出无线适配器,手机App...   炒股就看金麒麟分析师研报,权威,专业,及时,全面,助您挖掘潜力主题机会! (来源:IT之家)I...
年味渐浓时 暖意正升腾 转自:民政微语春节将至,家家户户备年货、盼团圆,街巷间红灯笼高挂,集市里烟火升腾,浓浓年味扑面而来。...