代码改变世界

ios不起眼的错误

2017-11-22 11:50  dengchaojie_learner  阅读(119)  评论(0编辑  收藏  举报

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

_result =+  value;// 错误

 

_result /=  value;// 除法

 

// bounds和frame

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