1. 程式人生 > >OC過期方法/屬性替換匯總

OC過期方法/屬性替換匯總

att hat ont system title nsf attr nbsp font

1.sizeWithFont.(7.0廢除) - > sizeWithAttributes

  

  CGSize size = CGSizeZero;

size = [title sizeWithFont:[UIFont systemFontOfSize:15]]; -->

size = [title sizeWithAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:15]}];

2.

OC過期方法/屬性替換匯總