このスニペットを使用して、すべてのアプリの左戻るボタンのナビゲーション バーのイメージ背景を設定しようとしています:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
float version = [[[UIDevice currentDevice] systemVersion] floatValue];
if (version >= 5.0)
{
// iPhone 5.0 code here
UIImage *image = [UIImage imageNamed: @"btn_back.png"];
image = [image stretchableImageWithLeftCapWidth:40.0f topCapHeight:0.0f];
[[UIBarButtonItem appearance] setBackButtonBackgroundImage:image forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
}
return YES;
}
私は stretchableImageWithLeftCapWidth: でさまざまな値を試してきましたが、最良の結果はこれでした:
背景画像を正しいサイズに設定するにはどうすればよいですか?
ありがとう