English 中文(简体)
如何让一个子分类的 UIGESDERRecocognize 类在视图上调用选择器
原标题:How do I have a subclassed UIGestureRecognizer class call a selector on a view

我有一个叫做 GameView Conserenter 的视图。 我没有设置它, 但是它似乎是一个带有 EAGL 嵌入视图的 UIKit 视图 。

我为我的 GameView Control 设置了手势识别器, 用于窃听和浏览我的 GameView Contractor 。 他们的工作非常出色, 除了我设置的用来选用程序的方法( 在 GameView Contractor 内部的函数) 被调用触摸, 而不是触摸Began 。

接触Began功能的唯一方法就是小类。

因此,我将UITapGestureRecognize, 创建了一个触摸Began功能, 并在那里的NSLog 被调用 。 然而, 我无法调用来自 UITapGestureRecognize 子类的 GameView 控制器中的任何函数 。 ( 找不到 +MEthHODIWANTOCALL 方法 ) 。

我意识到我需要前后的“参考” 但是它们应该是什么? 或者这是完全错误的方法吗?我代表吗? (我最近才知道)什么是让GameView Control使用这个UITapGesture子类的方法的最佳方法?

问题回答

您的 GameView Conserent 似乎是一个单吨类( 应用程序中只有这一类的一个实例 ) 。 您可以在 GameView Consert 中使用一个类方法, 返回单吨的示例 。 这样您就可以定期使用这个方法 :

In Recognizer: GameViewController* myController = [GameViewController getInstance]; [myController handleTouchBegin];

或者,如果无需了解任何内部状态,您可以将控点TouchBegin定义为类方法:

[GameViewC主计长手持TouchBegin];





相关问题
Asynchronous request to the server from background thread

I ve got the problem when I tried to do asynchronous requests to server from background thread. I ve never got results of those requests. Simple example which shows the problem: @protocol ...

objective-c: Calling a void function from another controller

i have a void, like -(void) doSomething in a specific controller. i can call it in this controller via [self doSomething], but i don t know how to call this void from another .m file. I want to call ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

NSUndoManager and runModalForWindow:

I have a simple Core Data app which displays a list of entities in the main window. To create or add new entities, I use a second modal window with a separate managed object context so changes can be ...

NSMutableArray values becoming "invalid"

I m trying to show a database information in a tableview and then the detailed information in a view my problem is as follow: I created a NSMutableArray: NSMutableArray *myArray = [[NSMutableArray ...

iPhone numberpad with decimal point

I am writing an iPhone application which requires the user to enter several values that may contain a decimal point (currency values, percentages etc.). The number of decimal places in the values ...

热门标签