ios不起眼的错误

_result +=  value;// 正确。记忆方法:按照正常的思路,加上多少,等于...

_result =+  value;// 错误

 

_result /=  value;// 除法

 

// bounds和frame

UILabel *lb = [[UILabel alloc] initWithFrame:headerView.bounds];

原文地址:https://www.cnblogs.com/dengchaojie/p/7878490.html