ActionSheet样式3-
<h1>样式展示</h1>
<p><img src="https://www.showdoc.cc/server/api/common/visitfile/sign/b88cac42de6969756a574faee42fd98d?showdoc=.jpg" alt="" /></p>
<h1>参数说明</h1>
<p>/*
标题控件
<strong>/
@property (nonatomic, strong) UILabel <em>feeTitle;
/</em>
分区选中item
</strong>/
@property (nonatomic, strong) NSIndexPath <em>carTypeIndex;
@property (nonatomic, strong) NSIndexPath </em>carLengthIndex;
/*
数据源
*<em>/
@property (nonatomic, strong) NSArray </em>guigeArray;</p>
<h1>调用示例</h1>
<pre><code>LLUIKit_SheetMoreSelectBottomView *carTypeView = [[LLUIKit_SheetMoreSelectBottomView alloc]init];
carTypeView.guigeArray =
@[@{@"sTitle":@"车型",
@"data":@[@{@"title":@"箱式"},@{@"title":@"挂式"}]},
@{@"sTitle":@"车长",
@"data":@[@{@"title":@"5.9米"},@{@"title":@"5.9米"},@{@"title":@"5.9米"},@{@"title":@"7.9米"},@{@"title":@"9米"},@{@"title":@"15.9米"}]}];
carTypeView.carTypeIndex = [NSIndexPath indexPathForItem:0 inSection:0];
carTypeView.carLengthIndex = [NSIndexPath indexPathForItem:0 inSection:0];
[self presentViewController:carTypeView animated:YES completion:nil];
carTypeView.c_deleget = self;</code></pre>