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 have recently upgraded my phonegap iOS application to 2.3.0. This release converted my Cordova.plist file into a config.xml file as expected, but since the upgrade my application can no longer load resources from external URLs (images etc). I have the following delcaration in my config.xml:

<access origin="*"/>

Has anyone come across this issue since the upgrade?

share|improve this question
1  
I think question is not complete. "I have the following delcaration in my config.xml: " are you missing something? – Mejo Wilson Jan 11 at 4:30
Thanks for spotting. – Jonny Heavey Jan 14 at 16:32

2 Answers

up vote 1 down vote accepted

The whitelist is now specified like so:

<access origin="*" />

An important thing to note is that if you are using storyboards, you must override initWithCoder to call [super init] in order to make Cordova load settings from config.xml.

The loading is done in [CDVViewController loadSettings]. Try breakpointing there and if it is not being called then something is wrong.

share|improve this answer

I just ran into this and I am running in storyboards.

Add this to your MainViewController or your controller : CDVViewController

- (id)initWithCoder:(NSCoder *)aDecoder
{
    self = [super initWithCoder:aDecoder];
    if (self) {
        self = [self init];
    }
    return self;
}
share|improve this answer

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.