Here are the steps that I use in order to surface a couple of things that some of my custom iOS components and apps need.
These modifications are not supported by anyone. Except maybe me. You apply them entirely at your own risk.
Modify FMX_Platform_iOS.pas on your MAC as below. It’s typically located in the /Developer/Embarcadero/fmi directory.
CAUTION: Save a copy of FMX_Platform_iOS.pas FIRST!
CAUTION: Any update of XE2 will delete your changes, so keep this file around if you have to redo the changes.
…
unit FMX_Platform_iOS;
…
interface
…
// TUIViewController and TUIWindow declarations moved from implementation to interface section
type
{ TUIViewController }
TUIViewController = objcclass(UIViewController)
private
public
function shouldAutorotateToInterfaceOrientation(AinterfaceOrientation: UIInterfaceOrientation): Boolean; override;
procedure didReceiveMemoryWarning; override;
procedure didAnimateFirstHalfOfRotationToInterfaceOrientation(toInterfaceOrientation: UIInterfaceOrientation); override;
procedure didRotateFromInterfaceOrientation(fromInterfaceOrientation: UIInterfaceOrientation); override;
end;
{ TUIWindow }
TUIWindow = objcclass(UIWindow)
protected
public
Text: UITextField;
mainView: UIView;
mainController: TUIViewController;
end;
// mainWindow moved from implementation to interface section
// currentOrientation added to give current device orientation
// supportsPortrait etc added. You simply change these in your app code to False if not needed
var
mainWindow: TUIWindow;
currentOrientation : UIInterfaceOrientation;
supportsPortrait : Boolean = True;
supportsPortraitUpsideDown : Boolean = True;
supportsLandscapeRight : Boolean = True;
supportsLandscapeLeft : Boolean = True;
implementation
…
function TUIViewController.shouldAutorotateToInterfaceOrientation(
AinterfaceOrientation: UIInterfaceOrientation): Boolean;
begin
Result := ((AinterfaceOrientation = UIInterfaceOrientationLandscapeRight) and supportsLandscapeRight) or
((AinterfaceOrientation = UIInterfaceOrientationLandscapeLeft) and supportsLandscapeLeft) or
((AinterfaceOrientation = UIInterfaceOrientationPortrait) and supportsPortrait) or
((AinterfaceOrientation = UIInterfaceOrientationPortraitUpsideDown) and supportsPortraitUpsideDown);
if Result then
currentOrientation := AinterfaceOrientation;
end;
This entry was posted on Monday, May 7th, 2012 at 10:55 am and is filed under Delphi XE2, FireMonkey, RAD Studio XE2, iOS, iPhone. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
@Anders: what does it do exactly? Could not figure out..
is it to avoid device rotation? Intersting that compiled XE2 app ignores rotation preferences from Xcode. Does this override that?
I read somewhere that Apple is not a fan of non-rotateble apps and it might get rejected for it. But what do we know, I guess each case is avaliated individually by them.
Anders Ohlsson Says:DOH! I can’t believe I forgot to include the implementation part as well.
shouldAutorotateToInterfaceOrientation has to be changed of course.
Blog edited to reflect all changes…
Anders Ohlsson Says:And yes, the default behaviour is the same - all rotations are supported. If you set a few to False, then the UI won’t rotate to those.
You don’t have to support all 4 rotations at all. Typically you support at least 2. I can’t see why you wouldn’t support Portrait AND PortraitUpsideDown if you support one of them, and likewise, I can’t see why you wouldn’t support LandscapeRight AND LandscapeLeft if you support one of them.
My first app - my analog clock - only supports Portrait. If I ever update it again, I’ll probably support all UI rotations with proper scaling. The MathViz update will only support Landscap (Left/Right) going forward, simply because the controls constrict the middle of the screen too much. At least the way I designed it.
引文来源 The Hacker’s Corner ? Blog Archive ? Modifying FMX_Platform_iOS.pas to support surface mainWindow and add device orientation support
本文详细介绍了如何在自定义iOS组件和应用程序中,通过修改FMX_Platform_iOS.pas文件来支持主窗口和设备方向的特性。包括了将`TUIViewController`和`TUIWindow`的声明从实现部分移到接口部分,并调整了支持设备旋转的逻辑。同时提供了关键代码示例和注意事项。

被折叠的 条评论
为什么被折叠?



