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.

Hi I'm using the facebook share sheet on SDK 3.1 and it works except when I try to share 2 urls it crashes.

NSArray* urls = [NSArray arrayWithObjects:@"http://google.com", @"http://yahoo.com", nil];
BOOL displayedNativeDialog = [FBNativeDialogs presentShareDialogModallyFrom:self
                                                   initialText: @"hellooo"
                                                        images: nil
                                                          urls: urls
                                                       handler:     ^(FBNativeDialogResult result, NSError *error) {
if (error) {
    NSLog(@"handler error:%@, %@", error, [error localizedDescription]);
} else {
if (result == FBNativeDialogResultSucceeded)
{
    NSLog(@"handler success");
}
else
{
    NSLog(@"handler user cancel");
}
}
}];

Result:

-[__NSCFConstantString isMusicStoreURL]: unrecognized selector sent to instance 0x3d23e8

* Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString isMusicStoreURL]: unrecognized selector sent to instance 0x3d23e8'

share|improve this question

1 Answer

I believe that the NSArray of Urls it is taking is expecting NSURLs, not NSStrings. You can use the static URLWithString to get the NSURLs for the array.

share|improve this answer
Thanks I made that change and it causes it not to crash anymore but the Facebook post only shows 1 url. – curtis Oct 4 '12 at 18:54

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.