Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fetchAsync example no longer valid #107

Closed
blwinters opened this issue Jun 25, 2015 · 0 comments
Closed

fetchAsync example no longer valid #107

blwinters opened this issue Jun 25, 2015 · 0 comments

Comments

@blwinters
Copy link

In Readme.md, the following function generates the error: Cannot invoke 'fetchInBackgroundWithBlock' with an argument list of type '((PFObject!, NSError!) -> Void)'.

func fetchAsync(object: PFObject) -> BFTask {
    var task = BFTaskCompletionSource()
    object.fetchInBackgroundWithBlock {
        (object: PFObject!, error: NSError!) -> Void in
        if error == nil {
            task.setResult(object)
        } else {
            task.setError(error)
        }
    }
    return task.task
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants