MFMailComposeViewController を再設計することは可能ですか?
どのように?
アプリ Dropbox ならそれが可能です。写真: http://jonathangurebo.tumblr.com/post/40436277822
「MessageUI.framework」を変更できますか?
MFMailComposeViewController を再設計することは可能ですか?
どのように?
アプリ Dropbox ならそれが可能です。写真: http://jonathangurebo.tumblr.com/post/40436277822
「MessageUI.framework」を変更できますか?
アプリのすべてのナビゲーション バーの外観のカスタマイズに関するリクエストに答えるには、アプリケーションでこれを使用します:didFinishLaunchingWithOptions: アプリのデリゲートで:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"image"] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setTintColor:[UIColor blueColor]];
[[UINavigationBar appearance] setAlpha:1];
//change background image and tint color for navigation buttons
// Set the text appearance for navbar
[[UINavigationBar appearance] setTitleVerticalPositionAdjustment:2 forBarMetrics:UIBarMetricsDefault]; //change vertical appearance of navigation bar title
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor], UITextAttributeTextColor,
[UIColor clearColor], UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(1, 1)], UITextAttributeTextShadowOffset,
[UIFont fontWithName:@"HelveticaNeue" size:22], UITextAttributeFont,
nil]]; //set custom font info