ios - 如何使用链式 block
<p><p>我是代码块的新手。我在 Imgur API 中遇到了这个方法声明。</p>
<pre><code>+ (void)uploadImageWithFileURL:(NSURL *)fileURL success:(void (^)(IMGImage *image))success progress:(NSProgress * __autoreleasing *)progressfailure:(void (^)(NSError * error))failure;
</code></pre>
<p>使用这种方法的正确方法是什么?当我尝试将它用作链接 block 时,它会给我一个编译器错误。</p>
<p>我就是这样尝试的</p>
<pre><code> success:^(IMGImage *image) {
} progress:(NSProgress *__autoreleasing *){
}failure:^(NSError *error) {
}];
</code></pre>
<p>提前致谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>^</code> 表示传递带有参数的代码块,NSProgress 对象上的双 <code>*</code> 表示您分配一个对象(指针),然后传递一个指针指向那个指针...</p>
<pre><code>NSURL *fileURL = // create a URL
NSProgress *progress;
[SomeClass uploadImageWithFileURL:fileURL success:^(IMGImage *image) {
// success code goes here
} progress:&progressfailure:^(NSError * error) {
// error code goes here
}];
</code></pre>
<p>SomeClass 是提供这个(类)方法的类。</p></p>
<p style="font-size: 20px;">关于ios - 如何使用链式 block ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34568893/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34568893/
</a>
</p>
页:
[1]