ios - 如何集成ELCImagePickerController?
<p><p>我在我的应用程序中使用 ELCImagePickerController。根据从 Github 下载的演示,我使用的代码是</p>
<pre><code>ELCAlbumPickerController *albumController = [ initWithNibName:@"ELCAlbumPickerController" bundle:];
ELCImagePickerController *elcPicker = [ initWithRootViewController:albumController];
;
;
ELCImagePickerDemoAppDelegate *app = (ELCImagePickerDemoAppDelegate *)[ delegate];
;
;
;
</code></pre>
<p>现在它不会工作,因为 ELCImagePickerDemoAppDelegate 不是我的应用程序的 AppDelegate。那么,将这个图像选择器集成到我的应用程序的正确代码应该是什么。
我还尝试将 UIViewController 子类添加到我的应用程序并调用 </p>
<pre><code>;
</code></pre>
<p>但这并没有显示选择器并记录一条消息</p>
<pre><code>deallocing ELCImagePickerController
</code></pre>
<p>谁能指导我正确的方向?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>按照下面的方法做</p>
<p>在.h文件中添加这个</p>
<pre><code>#import "ELCImagePickerController.h"
</code></pre>
<p>并符合<code>ELCImagePickerControllerDelegate</code>协议(protocol)</p>
<p>并在 .m 文件中将其添加到顶部</p>
<pre><code>#import "ELCImagePickerController.h"
#import "ELCAlbumPickerController.h"
</code></pre>
<p>并在要显示选择器的位置添加以下代码</p>
<pre><code>ELCAlbumPickerController *albumController = [ initWithNibName:@"ELCAlbumPickerController" bundle:];
ELCImagePickerController *elcPicker = [ initWithRootViewController:albumController];
;
;
;
</code></pre>
<p>还包括所需的协议(protocol)方法</p></p>
<p style="font-size: 20px;">关于ios - 如何集成ELCImagePickerController?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10123560/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10123560/
</a>
</p>
页:
[1]