iPhone 加速计和横向模式问题

发布于 2024-09-24 03:23:02 字数 561 浏览 4 评论 0原文

我在 Accelerometer 委托方法中调用一个函数,如下所示

这是在 ViewControllerX.m 中

-(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration
{
   [self methodX];
}

我也在接口方法中调用另一个函数,如下所示

此方法在 ViewControllerY 中

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{

  [object methodY];
  //Here "object" is ViewControllerX.m 's Object,

} 

问题是,当我摇动我的 iPhone 时

,调用的是 methodY,而不是 methodX。

谁能告诉我如何处理这个问题?

I am calling a function in Accelerometer delegate method like this

This is in ViewControllerX.m

-(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration
{
   [self methodX];
}

i am also calling another function in interface method like this

This method is in ViewControllerY

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{

  [object methodY];
  //Here "object" is ViewControllerX.m 's Object,

} 

The problem is, when i shake my iPhone

methodY is calling instead of, methodX.

can any one tell me how to handle this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时模样 2024-10-01 03:23:02
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

应该简单地返回一个 BOOL 值,指示是否支持 interfaceOrientation。来自 UIViewController 文档:

您对此方法的实现
应该简单地返回 YES 或 NO 基于
中的值
接口方向参数。不要
尝试获取的值
interfaceOrientation 属性或检查
报告的方向值
UIDevice 类。你的视图控制器
要么能够支持
给定方向或不给定方向。

根据我的经验,在此方法内进行任何大量处理不是一个好主意。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

should simply return a BOOL value indicating whether or not the interfaceOrientation is supported or not. From the UIViewController documentation:

Your implementation of this method
should simply return YES or NO based
on the value in the
interfaceOrientation parameter. Do not
attempt to get the value of the
interfaceOrientation property or check
the orientation value reported by the
UIDevice class. Your view controller
is either capable of supporting a
given orientation or it is not.

In my experience, it is not a good idea to any extensive processing inside this method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文