0

是否可以重新设计 MFMailComposeViewController?

如何?

App Dropbox 可以做到。图片:http: //jonathangurebo.tumblr.com/post/40436277822

我可以更改“MessageUI.framework”吗?

4

1 回答 1

0

要回答您关于自定义应用程序中所有导航栏外观的请求,请在您的应用程序中使用它: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
于 2013-05-01T23:56:59.923 回答