修改TTLauncherView的标题字体颜色

修改TTDefaultStyleSheet.m里面的- (TTStyle*) launcherButtonImage:(UIControlState)state 方法就行了。

- (TTStyle*)launcherButton:(UIControlState)state {
  return
    [TTPartStyle styleWithName:@"image" style:TTSTYLESTATE(launcherButtonImage:, state) next:
    [TTTextStyle styleWithFont:[UIFont boldSystemFontOfSize:15] color:RGBCOLOR(255, 255, 255)  //修改颜色
                 minimumFontSize:11 shadowColor:nil
                 shadowOffset:CGSizeZero next:nil]];
}
原文地址:https://www.cnblogs.com/appwgh/p/2531023.html