We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// 一次性设置所有标题属性
// _titleScrollViewColor = titleScrollViewColor; 这里应该用self.titleScrollView 否则不走setter方法 self.titleScrollViewColor = titleScrollViewColor; } _titleFont = titleFont; }
if (_titleColorGradientStyle == YZTitleColorGradientStyleFill && _titleWidth > 0) { @throw [NSException exceptionWithName:@"YZ_ERROR" reason:@"标题颜色填充不需要设置标题宽度" userInfo:nil]; }
}
The text was updated successfully, but these errors were encountered:
谢谢,搞了很久,我说怎么颜色修改了没反应 @CoderMikeHe
Sorry, something went wrong.
No branches or pull requests
// 一次性设置所有标题属性
UIColor *titleScrollViewColor;
UIColor *norColor;
UIColor *selColor;
UIFont *titleFont;
if (titleEffectBlock) {
titleEffectBlock(&titleScrollViewColor,&norColor,&selColor,&titleFont,&_titleHeight,&_titleWidth);
if (norColor) {
self.norColor = norColor;
}
if (selColor) {
self.selColor = selColor;
}
if (titleScrollViewColor) {
// _titleScrollViewColor = titleScrollViewColor; 这里应该用self.titleScrollView 否则不走setter方法
self.titleScrollViewColor = titleScrollViewColor;
}
_titleFont = titleFont;
}
}
The text was updated successfully, but these errors were encountered: