Sharekit 自定义模型视图按钮颜色
Lovin' Sharekit
工具栏有自定义背景,但想要更改显示要共享的链接的模式视图中的按钮颜色(即 Twitter 链接模型视图)...只是找不到要添加自定义的文件导航栏按钮条码一直
在尝试,但似乎找不到正确的组合...有人知道吗?
- (void)viewDidLoad
{
[super viewDidLoad];
/*
Colour the Nav Bar buttons
*/
[self.navigationController.navigationBar applyCustomTintColor];
}
Lovin' Sharekit
Have custom backgrounds happening for the toolbars, but want to change the button colour in the modal view that displays which link to share (ie the Twitter link model view)...just can't find which file to add my customise nav bar button bar code to
Been trying but can't seem to find right combo... anyone know?
- (void)viewDidLoad
{
[super viewDidLoad];
/*
Colour the Nav Bar buttons
*/
[self.navigationController.navigationBar applyCustomTintColor];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SHKConfig.h 中
修改
Add / 255.0 to your number(s)
这将我们的 RGB 颜色预先划分为 UIColor 的浮点百分比
在 SHK.m 中
修改 showViewController 函数
这为所有导航栏按钮(包括取消按钮)
着色 中提琴!
In SHKConfig.h
Amend
Add / 255.0 to your number(s)
This pre-divides our RGB color into the floating point percentage for a UIColor
In SHK.m
Amend showViewController function
This tints all navigationBar buttons (including the Cancel button)
Viola!