2011-11-22 13 views

risposta

10

Dovrebbe essere NSHumanReadableCopyright. È possibile localizzarlo anche se necessario, ma prima deve essere definito nel plist.

Aggiunta di un utile suggerimento se v'è interesse in uno qualsiasi degli altri tasti:

NSLog(@"%s \n%@", __FUNCTION__, [[[NSBundle mainBundle] infoDictionary] allKeys]); 

che produce un risultato come questo:

2011-11-22 17:08:02.072 MyApp [1007:707] -[SplashScreenViewController viewWillAppear:] 
(
    CFBundleSignature, 
    DTSDKName, 
    DTPlatformBuild, 
    BuildMachineOSBuild, 
    NSBundleInitialPath, 
    NSHumanReadableCopyright, 
    CFBundleExecutable, 
    CFBundleIconFiles, 
    LSRequiresIPhoneOS, 
    CFBundleInfoPlistURL, 
    NSMainNibFile, 
    CFBundleShortVersionString, 
    CFBundlePackageType, 
    NSBundleResolvedPath, 
    DTSDKBuild, 
    CFBundleResourceSpecification, 
    DTXcodeBuild, 
    DTCompiler, 
    CFBundleDisplayName, 
    CFBundleDevelopmentRegion, 
    UTExportedTypeDeclarations, 
    DTPlatformName, 
    CFBundleURLTypes, 
    CFBundleName, 
    CFBundleVersion, 
    UTImportedTypeDeclarations, 
    CFBundleDocumentTypes, 
    DTPlatformVersion, 
    CFBundleSupportedPlatforms, 
    DTXcode, 
    MinimumOSVersion, 
    UISupportedInterfaceOrientations, 
    CFBundleIdentifier, 
    UIAppFonts, 
    UIDeviceFamily, 
    CFBundleExecutablePath, 
    CFBundleInfoDictionaryVersion 
) 
+0

Grazie - ho trovato dopo ho chiesto :) Inoltre , Avrei dovuto pensare di scaricare le chiavi prima che le chiedessi. – mobibob

+0

Va bene, questa è una bella domanda. – CodaFi

+0

Grazie per la modifica mobibob! Ho pensato di scaricare, ma l'hai fatto prima di me. – CodaFi