576NSDictionary and NSArray plist examples

NSDictionary




	arrayKey
	
		string1
		string2
		string3
		string4
	
	dicKey
	
		key1
		object1
		key2
		object2
		key3
		object3
	
	key2
	object2
	key3
	object3



NSArray




	string1
	string2
	string3
	
		key1
		object1
		key2
		object2
		key3
		object3
	
	string5




At the end, after </plist>, there’s another CR.

490‘Initial interface orientation’ setting in Info.plisy

The Informatin Property List of iPhone Applications has the optional setting of Initial interface orientation. Is a NSString type, I was wondering, which values were supported, bzw required. Luckily, auto-complete is your friend. For completeness’ sake, here are the accepted values: Portrait (top home button) Portrait (bottom home button) Landscape (left home button) Landscape (right home button)

102Info.plist

Info.plist with an automatic pop-up of all possible values. Nice.