Using inAppSettingsKit, I'm trying to display the value of a Child Pane element in the summary tableCell.
TableCell correctly display the Title but not the value :/
Here is a snippet of my Root.plist file:
<dict>
<key>IASKViewControllerClass</key>
<string>SetupBirthViewController</string>
<key>IASKViewControllerSelector</key>
<string>init</string>
<key>Key</key>
<string>settings_birthYear</string>
<key>Title</key>
<string>Né(e) en</string>
<key>Type</key>
<string>PSChildPaneSpecifier</string>
</dict>
And my [NSUserDefaults standardUserDefaults] file is like bellow:
<dict>
<key>settings_birthYear</key>
<string>2009</string>
<key>enable_preference</key>
<true/>
</dict>
I also display Multi Value cell and it works like a charm...
Anyone to help me ?
Thanks.