Re: Integrate aurioTouch
Re: Integrate aurioTouch
- Subject: Re: Integrate aurioTouch
- From: Fritz Anderson <email@hidden>
- Date: Mon, 27 Jun 2011 07:17:35 -0500
On 27 Jun 2011, at 6:14 AM, Hugo Silva wrote:
> Ok, I solved all this errors, but now when I call this method I get this warning:
>
> warning: no '-startRecord' method found
>
> I have this code:
>
> aurioTouchAppDelegate *soundRecord = (aurioTouchAppDelegate *)[[UIApplication sharedApplication] delegate];
> [soundRecord startRecord];
>
> What is wrong?
>
> I put in the header file the @class auriotouch, and no imports...
The @class directive tells the compiler that the symbol refers to a class, so it won't emit errors because the symbol is unknown. It won't tell the compiler what methods the class supports. To do that, #import the class's interface (.h) file in the implementation (.m) files that use it.
— F
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden