Jump to content

FateEX

Senior Member
  • Posts

    580
  • Joined

  • Last visited

Posts posted by FateEX

  1. This is what's on it:

    #import <Preferences/Preferences.h>
    
    @interface ProjectNameListController: PSListController {
    }
    @end
    
    @implementation ProjectNameListController
    - (id)specifiers {
        if(_specifiers == nil) {
            _specifiers = [[self loadSpecifiersFromPlistName:@"ProjectName" target:self] retain];
        }
        return _specifiers;
    }
    - (void) link {[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com"]];
    }
    @end
    
    // vim:ft=objc
    

    So do I just remove the "- (void) link {[uIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com]];" :o

  2. Your Project folder -> Preferences Folder -> PreferencesName.mm. :)

    I used the nic template you linked me and there is no Preferences folder in my project folder :o

     

    The only folders I see are:

     

    -Project Folder

    ---->Project Folder

    -------->Resources

    ------------>project.plist

    ------------>project.png

    ------------>info.plist

    ------------>iOSGods.png

    -------->theos

    -------->project.mm

    -------->entry.plist

    -------->makefile

    ---->theos

    ---->project.plist

    ---->control

    ---->makefile

    ---->tweak.xm

    ---->writedata.h

  3.  

    Fixed the error by removing any extra modifications made to the Preferences.mm file. :)

    #import <Preferences/Preferences.h>
    
    @interface ProjectNameListController: PSListController {
    }
    @end
    
    @implementation ProjectNameListController
    - (id)specifiers {
    	if(_specifiers == nil) {
    		_specifiers = [[self loadSpecifiersFromPlistName:@"ProjectName" target:self] retain];
    	}
    	return _specifiers;
    }
    @end
    
    // vim:ft=objc
    
    

    I'm getting this same error. Where do I find this "preferences.mm" file? :MeGusta:

×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines