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.

For some reason, my shouldPerformDefaultActionForPerson function never gets called, in the simulator and the device. Could someone look at this and tell me what I'm missing? From all the examples I've found, I can't see what I'm doing wrong.

Here is my header:

#import <Foundation/Foundation.h>
#import <AddressBookUI/AddressBookUI.h>
#import <MessageUI/MessageUI.h>
#import "SWO.h"

@interface CustomABPersonViewController : ABPersonViewController
<MFMessageComposeViewControllerDelegate, ABPersonViewControllerDelegate>
{
    SWO *theSWO;
}

- (id)initWithSWO:(SWO *)aSWO;

@end

And here is my implementation file:

#import "CustomABPersonViewController.h"
#import <MessageUI/MessageUI.h>
#import "SWO.h"

@implementation CustomABPersonViewController

- (id)initWithSWO:(SWO *)aSWO
{
    if (self = [super init])
    {
      //Various init code
    }
    return self;
}

- (BOOL)personViewController:(ABPersonViewController *)personView shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)IdentifierForValue
{
    NSLog(@"In here!");
    return YES;
}

@end

And here is when I call in the view:

CustomABPersonViewController *view = [[CustomABPersonViewController alloc] initWithSWO:aSWO];
    view.personViewDelegate = self; 
    view.displayedPerson = aRecord;

    [self.navigationController setToolbarHidden:NO animated:NO];
    [self.navigationController pushViewController:view animated:YES];
share|improve this question
How are you testing that it does not work? – Mundi Sep 25 '12 at 15:25
You can see in my code that the shouldPerformDefaultActionForPerson() is logging "In here!". It never shows up in the log when I try it, both in the simulator and the device. I've also tried settings the return to NO, but the default action still occurs, regardless of the property type. – eshrickus Sep 25 '12 at 15:30

1 Answer

Many default actions do not work on the Simulator. You have to try them on an actual device.

share|improve this answer
I've been trying it on the simulator and device, to no avail. – eshrickus Sep 25 '12 at 15:28
Did you actually tap on something? – Mundi Sep 25 '12 at 16:02

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.