弹框modal样式11--Qin
<h1>样式展示</h1>
<p><img src="https://www.showdoc.cc/server/api/common/visitfile/sign/d3eba699f2a016b36542d8099f9e21a2?showdoc=.jpg" alt="" /></p>
<h1>控件代码参数说明</h1>
<pre><code>LLUIKit_AlerWithTextView.swift
number --- 最大可输入数
placeholderString --- 占位符
TitleString: --- 标题</code></pre>
<h1>代码引用</h1>
<pre><code> LLUIKit_AlertWithTextView*alerWithTextView = [[LLUIKit_AlertWithTextView alloc]initWithTitleString:@"标题文字" number:@"10" placeholderString:@"请输入关键字"];
alerWithTextView.sureButtonActionBlock = ^(id _Nonnull content) {
NSLog(@"%@-----",content);
};
[self presentViewController:alerWithTextView animated:YES completion:nil];
</code></pre>
<h1>代码使用样例</h1>