inAppSettingsKit を使用して、概要 tableCell に子ペイン要素の値を表示しようとしています。
TableCell は正しくタイトルを表示しますが、値は表示しません:/
これが私の Root.plist ファイルのスニペットです:
<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>
そして、私の [NSUserDefaults standardUserDefaults] ファイルは以下のようなものです:
<dict>
<key>settings_birthYear</key>
<string>2009</string>
<key>enable_preference</key>
<true/>
</dict>
マルチバリューセルも表示すると、魅力的に機能します...
誰でも私を助けてくれますか?
ありがとう。