修改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]];
}

posted on 2012-06-01 16:45  黯夜曦  阅读(296)  评论(0编辑  收藏  举报

导航