最近在想这个问题,又没有 - (void)setFont:(UIFont *)font forState:(UIControlState)state;
这样的方法,为什么要把它置为 Deprecated ?是因为公开了 titleLabel
属性吗,两者都可以设置 font
属性,同一个属性有两个地方可以设置,不符合某个设计模式?我猜的。。
似乎 v2 的 Markdown 语法不支持 `` 标记代码?
1
dxk611 2016-06-24 14:21:34 +08:00
setAttributedTitle:<#(nullable NSAttributedString *)#> forState:<#(UIControlState)#>
|
2
vincentxue OP @dxk611 我认为压根不是这个原因, font 在 3.0 就被 Deprecated 了,但是这个方法在 6.0 才出现。
|
3
lee0100317 2016-06-24 15:19:14 +08:00
titleLabel 3.0 后开始可用
font (iOS 3.0) Property The font used to display text on the button. Deprecation Statement Use the font property of the titleLabel instead. |
4
hyyy 2016-06-24 15:49:34 +08:00
支持 markdown ,多行代码标记
``` NSLog(@"%@", @"Hello World"); ``` |
5
vincentxue OP |