Xcode(iOSOpenDev)で通知センターウィジェットを作成するときに「設定バンドル」ボックスにチェックを入れて追加した設定バンドルのコードを書き込もうとしています。私はそのPSLinkListCell
中に3つのアイテムを持っています。UIimage
選択した選択に応じて、ビュー内のイメージを変更する 3 つのアイテムも希望します。
どんな助けでも大歓迎です。
PLIST (PSLinkListCell のみ)
<dict>
<key>cell</key>
<string>PSLinkListCell</string>
<key>defaults</key>
<string>dylankelly.MyStat</string>
<key>key</key>
<string>color_pref</string>
<key>label</key>
<string>Background Colour</string>
<key>detail</key>
<string>PSListItemsController</string>
<key>validTitles</key>
<array>
<string>Blue</string>
<string>Green</string>
<string>Red</string>
</array>
<key>validValues</key>
<array>
<integer>1</integer>
<integer>2</integer>
<integer>3</integer>
</array>
<key>default</key>
<integer>1</integer>
<key>PostNotification</key>
<string>dylankelly.MyStat-preferencesChanged</string>
</dict>
UIImage ビュー
UIImage *bg = [[UIImage imageWithContentsOfFile:@"/System/Library/WeeAppPlugins/MyStat.bundle/WeeAppBackground.png"] stretchableImageWithLeftCapWidth:5 topCapHeight:71];
UIImageView *bgView = [[UIImageView alloc] initWithImage:bg];
bgView.frame = CGRectMake(0, 0, 312, 71);