Tagged Questions
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?
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
352 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 ...
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
523 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 ...
0
votes
1answer
540 views
Understanding forward declaration warning
I am writing my first lines in objective-c for an iPhone app.
This is the code:
/* ViewController.h */
@protocol ImageFlowScrollViewDelegate;
@interface ViewController : ...