Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I did exactly what they do in the video. However, when I get to the scrumptious app and try to build/run it, mine fails. It says: "Parse Issue. Expected a type."

Here are the three lines that it thinks are broken (located in the ACAccountStore.h):

    // Returns the account type object matching the account type identifier. See
    // ACAccountType.h for well known account type identifiers
    - (ACAccountType *)accountTypeWithAccountTypeIdentifier:(NSString
    *)typeIdentifier;

    // Returns the accounts matching a given account type.
    - (NSArray *)accountsWithAccountType:(ACAccountType *)accountType;

// this method is called on an arbitrary queue.
- (void)requestAccessToAccountsWithType:(ACAccountType *)accountType 
                  withCompletionHandler:(ACAccountStoreRequestAccessCompletionHandler)handler;

Here is a link to the tutorial. I only didn't even make it two min in before I hit this wall. http://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/3.1/

I am running Xcode v4.4.1.

share|improve this question

1 Answer

From Step 1 of that tutorial:

Install the Prerequisites

You need Xcode 4.5, and optionally, Git

Try upgrading XCode and see if it builds with the recommended version.

share|improve this answer
1  
Well now I just feel like an idiot. – Chase Roberts Sep 27 '12 at 17:04
Well that might not be the issue, but it's the first thing i noticed – Igy Sep 27 '12 at 18:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.