English 中文(简体)
- 自动转换到与互换信息有关的信息
原标题:-shouldAutorotateToInterfaceOrientation related message
  • 时间:2012-05-24 10:13:02
  •  标签:
  • ios4

有关自动旋转到互动的有些奇怪。

在调试器控制台里,

The view controller returned NO from -shouldAutorotateToInterfaceOrientation: for all interface orientations. It should support at least one orientation.

但在现实中,旋转效果很好。 信息是错误的。 以下是“ 自动旋转到互动方向” 的代码 :

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return ([centerPoint autoRotateFlag]||(interfaceOrientation==centerPoint.userOrientation));
}

自动旋转法拉格(YES)是完全真实的,或者不是中点。用户引导已被固定在四个可接受的值之一上。

这对我来说已经工作了很长时间,应用程序仍然有效。我只是不知道这个信息来自何处。

任何想法吗?

问题回答

By putting some tracing in my software, using NSLog; I realized that shouldAutorotateToInterfaceOrientation was called seven times before viewDidLoad was called.

由于我的变数自动旋转法拉格仅在通过视图时初始化。 这解释了我的问题。

I have to admit though, that I was far from thinking shouldAutorotateToInterfaceOrientation could be called before viewDidLoad. Obviously I was wrong. And I still do not fully understand the order in which all those methods are called.





相关问题
touchesBegan @ multitask

Is it possible to access to the touchesBegan event while application is running in background in iPhoneOS 4.0 ? Thanks in advance.

Error when making a distribution file with iPhone SDK 4.0

When I try to upload the binary to iTunesConnect it says: "An application targeting the iPhone device family may not require a iPhone OS Deployment Target of 3.2, which is an iPad-only OS". I am ...

New App provisioning in iPhone SDK 4 Beta

The enterprise distribution in iPhone 4 beta is supposed to be easier. Companies can host their own servers with the apps instead of distributing through iTunes. I am looking for technical ...

IPhone SDK 4 background process for incoming call [closed]

I would like to track (run some code - or invoke function) when the user get an incoming call. for example: for every call the user receive I want to save the number, and check something during or ...

How can I install more than one version of the iPhone SDK?

I want to install the iPhone 4.0 SDK, but I don t want to lose my stable 3.2 version because I am planning on packaging an app for distribution soon. Any tips on installing more than one version? ...

iPhone SDK 4.0 Phone locked tool

Is there going to be a way with the 4.0 SDK to create a tool similar to Pandora(which was demoed today), so when the phone is locked, I can manipulate my app? So basically if my app was running, and ...

UITableViewCell Custom accessory - get the row of accessory

I have a pretty big issue. I am trying to create a favorite-button on every UITableViewCell in a UITableView. That works very good, and I currently have an action and selector performed when pressed. ...

热门标签