Tagged Questions
2
votes
1answer
47 views
difference between #import and @class in my simple case
In my controller's header file, I need to declare a instance of another controller. I did it in the following way:
#import "BIDMyRootController.h"
#import "BIDAnotherController.h" //I import another ...
2
votes
2answers
76 views
Declare a variable or function in one library and define it in another
I have a library I use in all my apps, containing common code. I compile it as a "Framework" for Mac and a "Static Library" for iOS.
I would like for the library to be able to reference a variable ...
3
votes
2answers
107 views
Trouble with forward-declarations and header files
In order to keep my build times down and also to keep my code as succinct as possible, I've been using forward-declarations in my header files and placing my #import statements in my implementation ...
0
votes
1answer
137 views
Objective C: Properties Not Found In Forward Declaration Vs Parse Issue: Expected A Type
I have a singleton class called DataManager. This class is used by several other classes to deal with loading and saving plist files.
I am adding the ability for DataManager to save screenshots as ...
3
votes
2answers
108 views
Forward Class and Protocols in Objective C
I have two classes where both of them have protocols to be implemented.
Can I implement one of the class's protocol in to the other and vice versa?
Does this cause any run time error?
0
votes
1answer
499 views
Receiver type 'WebFrame' for instance message is a forward declaration
I'm learning ObjC and cocoa dev and have come across a real 'stumper'. Having exhausted Google, I respectfully adorn my desperation hat and present to you:
A class and a view controller:
The class ...
1
vote
1answer
2k views
“Attempting to use the forward class 'Game' as superclass of 'MathGame'” in Cocos2d
I'm making a Cocos2d game for iphone, and I have my main game mode, Game, which inherits from CCLayer.
I'm trying to make another game mode, MathGame, which inherits from Game, but when I try to ...
0
votes
2answers
117 views
Forward Declaration
I was building an app when I ran into some errors. After doing some research, I found that the reason is because I am working with 2 files, that each #import each other. I read that the cure to this ...
5
votes
5answers
719 views
Importing header in objective c
In Objective-c when we using object of one class into another class by convention we should forward declare the class in .h file, i.e. @class classname;. And should import the header file in .m file, ...
0
votes
1answer
482 views
Forward declaration error
I have a protocol like this:
#import <Foundation/Foundation.h>
@protocol Prot1 <NSObject>
@required
- (void)methodInProtocol;
@end
This is a protocol for a delegate I want to store ...
0
votes
4answers
516 views
Forward declaration of a namespaced C++ class in in Objective C
Is it possible to do forward declaration of a C++ class, which is inside a namespace, in an Objective C header file?
C++ class to forward declare in Objective C:
namespace name
{
class Clazz
...
3
votes
1answer
769 views
Xcode warns about missing protocol definition, even though @protocol is used
Since I had a import-cycle recently, I'm moving all #import statements (concerning my own files) from the header into the corresponding .m-file. I also added @class and @protocol forward-declarations ...
5
votes
1answer
535 views
In Xcode 4.3, can I require forward method declarations as before
Prior to Xcode 4.3, if you wanted to use a method before you declared its implementation, you were required to forward declare the method (as with a C function prototype). This would usually be done ...
6
votes
2answers
5k views
Private Method Declaration Objective-C
I have a lot question marks tolling above my head.
What i don't get is before xcode 4.3 i needed to declare forward declarations (for private methods) in my implementation file.
like in my .m file:
...
1
vote
1answer
129 views
Where is the Class class declared/how to forward declare it?
I cannot compile my because of this error in my header:
error: expected identifier [1]
-(void) removeAllEntitiesOfClass:(Class)class;
with the caret pointing to the lowercase class.
...
42
votes
6answers
21k views
receiver type *** for instance message is a forward declaration
In my iOS5 app, I have NSObject States class, and trying to init it:
states = [states init];
here is init method in States:
- (id) init
{
if ((self = [super init]))
{
pickedGlasses ...
5
votes
3answers
353 views
How to make a forward declaration for private method?
I'm arranging my methods into groups using #pragma mark in implementation. But sometimes, the method implementation code appears below the code that calls this method, and I'm getting "Instance method ...
8
votes
7answers
404 views
Disadvantages of forward declaration?
In C++ and Objective-C, I've gotten into the habit of forward-declaring any necessary classes that do not need to be defined in the header, and then importing the header files defining those classes ...
2
votes
2answers
2k views
Incomplete definition of type “struct objc_method”
I'm really confused with this problem. What I need to do is use some obj-c runtime feature in my project. Here is simple code in my .m file:
#import "Base.h"
#import <objc/runtime.h>
...
0
votes
3answers
1k views
Error: 'class name' redeclared as different kind of symbol?
I was facing the same error as asked in this question
I overcome with this error by solution of declaring class ahead of time in my .h file with the class parameter
I am having FFTBufferManager.h ...
0
votes
1answer
962 views
iOS - Custom keyboard, updating text field in parent view
I am implementing a custom keyboard and need to update the original textField when buttons are touched on that keyboard.
I have tried following the answer to this question:
Return Inputs to ...
0
votes
1answer
526 views
Hiding a superview controller's UINavigatonBar from within a subview's controller?
I am building a large hierarchical iPhone application with multiple screens controlled by a UINavigationController. One of these screens is able to display content in two different formats (I toggle ...
4
votes
1answer
2k views
Objective-C forward declarations vs. #imports [duplicate]
Possible Duplicate:
@class vs. #import
In Objective-C, what are the best practices for using forward declarations (of classes or protocols) vs. #import-ing files? And why are forward ...
11
votes
1answer
10k views
Objective-C: Forward Class Declaration
I'm writing a multiview app that utilizes a class called RootViewController to switch between views.
In my MyAppDelegate header, I create an instance of the RootViewController called ...
7
votes
2answers
117 views
Is it always inappropriate to #import more than absolute necessary in Objective-C interfaces?
I'm well aware that the general rule of thumb is you should only import what is necessary—base class interfaces, protocol interfaces, etc.—for a class to compile and use @class for everything that can ...
3
votes
1answer
2k views
Can anyone give example of forward declaration in objective C for a normal class and not for category or protocol?
Can anyone give example of forward declaration in objective C for a normal class and not for category or protocol?
0
votes
2answers
2k views
Cocoa: Build Warning that s Forward Declared Class's and @interface May not Exist
I am trying to build the Clustering Plug in my project under Leopard. I have following two questions.
In the project an interface class is defined as
@interface ClusteringController : ...

