关于UIButton的一些用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于UIButton的一些用法相关的知识,希望对你有一定的参考价值。
一些常见的属性的方法
UIButton * getVerificationCodeBtn = (UIButton *)[cell.contentView viewWithTag:102]; getVerificationCodeBtn.cornerRadius = 15;//圆角 getVerificationCodeBtn.borderWidth = 1;//边框宽度 getVerificationCodeBtn.borderColor = RGBColor(246, 185, 55);//边框颜色 [getVerificationCodeBtn addTarget:self action:@selector(buttonBack:)];
以上是关于关于UIButton的一些用法的主要内容,如果未能解决你的问题,请参考以下文章
Xcode中的变量模板(variable template)的用法