自定义cell 左标题右内容右图标
<h1>样式展示</h1>
<p><img src="https://www.showdoc.cc/server/api/common/visitfile/sign/749b91d16eda464483c9f2e2c04c35cc?showdoc=.jpg" alt="" /></p>
<h1>控件代码参数说明</h1>
<h1>代码引用</h1>
<pre><code>#import "LLUIKit_LeftTitleAndRightContentWithRightImageCommonCell.h"
LLUIKit_LeftTitleAndRightContentWithRightImageCommonCell*commonCell = [tableView dequeueReusableCellWithIdentifier:@"BMM_MyBorrowCommonCell"];
if (commonCell == nil) {
commonCell = [[LLUIKit_LeftTitleAndRightContentWithRightImageCommonCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"BMM_MyBorrowCommonCell"];
}</code></pre>
<h1>代码使用样例</h1>
<pre><code> LLUIKit_LeftTitleAndRightContentWithRightImageCommonCell*commonCell = [tableView dequeueReusableCellWithIdentifier:@"BMM_MyBorrowCommonCell"];
if (commonCell == nil) {
commonCell = [[LLUIKit_LeftTitleAndRightContentWithRightImageCommonCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"BMM_MyBorrowCommonCell"];
}
commonCell.cellTitleLabel.text = _titleArray[indexPath.section][indexPath.row];
commonCell.cellContentLabel.text = _contenArray[indexPath.row];
commonCell.rightImageView.image = [UIImage imageNamed:BMM_ImageNameString(@"warning-grey")];
cell = commonCell;</code></pre>