1, call the system camera to take pictures, the bottom button is in English, here to switch to Chinese characters: in plist inside localization native development region Choose
2, use Mfmessagecomposeviewcontroller to write text messaging module when the interface is in English, the following method can solve the problem
Inside the plist Localization native development region Select the, then localized the can be mixed choose YES if there is no localized resources Can be mixed, need to add manually
3, [UIApplication sharedapplication].networkactivityindicatorvisible=no;
4, the iphone using code implementation program to achieve the current application of the shutdown, and to achieve the same effect as home.
(Terminatewithsuccess is a proprietary API for iOS and cannot be audited by Apple)
[[UIApplication sharedapplication] Performselector: @selector (terminatewithsuccess)];
5,
Mfmessagecomposeviewcontroller or mfmailcomposeviewcontroller the problem of not displaying the keyboard under IOS6 This issue appears to occur only if you manually change the system status bar level
For example: Self.window.windowLevel = uiwindowlevelstatusbar+1;
This setting is equivalent to affecting the level of pop-up SMS or Mail Controller page window, causing the keyboard problem to not appear (although this problem is not ios6 below)
Workaround: Add the following code to the current view controller to resolve
-(void) Viewdidappear: (BOOL) Animated {
[Super viewdidappear:animated];
Self.window.windowLevel = Uiwindowlevelnormal;
}