Tagged Questions
0
votes
2answers
105 views
How do i call subclass method from superclass when using class heirarchy in objective c
Here is my code:
@interface RootViewController : UIViewController{
}
-(IBAction)btnDetail1_Clicked:(id)sender;
@end
@implementation RootViewController
-(IBAction)btnDetail1_Clicked:(id)sender{
...
1
vote
2answers
169 views
Changing objective C file extension from .m to .mm causes errors
Originally I had the file containing the warning below in LoginViewController.m, which I ignored. And the code works fine.
warning: sending 'LoginViewController *' to parameter of incompatible type ...
0
votes
2answers
82 views
Objective-C Design Help Needed, Need Protocol Possibly?
I have a situation where ClassA contains a UIView property. I have two children of ClassA, ChildA and ChildB, both set this UIView property for themselves with two different types of UIView ...
-2
votes
2answers
711 views
UITableViewDataSource method
Here is the CellForRowAtIndexPath method of UITableViewDataSource protocol. I saw that code on a website.
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
2
votes
2answers
277 views
Added protocol to AppDelegate not registering
As soon as my first view loads my location controller calls -(void)locationFound to its delegate, which is [UIApplication sharedApplication].delegate (my AppDelegate)
I have a corresponding protocol ...
0
votes
1answer
708 views
No known instance method for selector for my protocol method
this is my protocol.
@protocol UCMapviewDelegate <NSObject>
@required
- (void)slideMapviewIn:(id)sender;
- (void)slideMapviewOut:(id)sender;
@end
This is were the methods should get called ...
1
vote
2answers
242 views
Cannot find protocol declaration for 'UITableViewDataDelegate'
I'm new to app development and am trying to follow 'Learning iPhone Programming'by Alasdair Allan (O'Reilly, 2010) but xcode isn't agreeing with the book.
It's bringing up the error 'Cannot find ...
3
votes
4answers
162 views
Why would you want a class to conform to a protocol privately?
I've been looking at Apple's MVCNetworking example project and part of the interface definition for AppDelegate is puzzling me. In the .h file we have this:
@interface AppDelegate : NSObject
{
...
...
5
votes
3answers
8k views
Can't get custom @protocol working on iOS
Note: the below is using iOS with Automatic Reference Counting (ARC) enabled. I think ARC may have a lot to do with why it isn't working as this is set up as per examples i've found via google.
I am ...
2
votes
2answers
208 views
How to pass values to a @protocol
I'm trying to implement a protocol.
I've looked at the documentation here and I understand the concepts although I think I'm missing a few things.
I'm trying to make a view that the user taps on a ...
13
votes
3answers
8k views
How to fix “Protocol Not Implemented”
When I make a new controller called TestController, I insert
<UITableViewDelegate,UITableViewDataSource,UITextFieldDelegate,UISearchBarDelegate>
to the interface of Test.h
When I run the ...
14
votes
4answers
10k views
Cannot find protocol declaration
So I have been looking around for the last couple of hours but haven't been able to find a solution to this - I would highly appreciate any help.
I have two view controllers A and B, and they both ...
0
votes
1answer
156 views
Cocoa Touch serializing object. Trying to read data member of custom class after being decoded causes program to crash
I'm having what seems to be a rather strange error when attempting to encode and decode an object I created. I believe I made the object and all the objects it contains conform to NSCoding and ...
3
votes
3answers
769 views
Understanding multiple mentions of delegate protocol in sample code
I got this code from one of Apple's examples:
@protocol SectionHeaderViewDelegate;
@interface SectionHeaderView : UIView {
}
@property (nonatomic, retain) UILabel *titleLabel;
@property ...
1
vote
2answers
940 views
Setting delegate for custom protocol interferes with UIScrollViewDelegate methods
I'm using a custom subclass of UIScrollView called ImageScrollView. I need to know when the user taps the scroll view, so I created a protocol. I implement the protocol in my RootViewController and ...
4
votes
2answers
595 views
Adding category method to NSObject, but getting warnings because it's not in the <NSObject> protocol when I call it
(I found some questions discussing the idea, but I didn't see a solution for my problem.)
I added this convenience method as a category to NSObject. (I've added other methods, so I'm still interested ...
1
vote
1answer
439 views
Protocol definition not found
I am having a little trouble with getting a protocol definition to work, and this must be a stupid mistake. I included the header in which the definition is located, but I got the warning, so followed ...
0
votes
0answers
65 views
Extending a protocol defined in external lib [duplicate]
Possible Duplicate:
Warning while adding and using a new method in external library protocol
Is there any way to add another method in a protocol which is part of some other library?
I am ...
3
votes
2answers
4k views
Cannot find protocol declaration for 'MyObjectViewDelegate' when it is CLEARLY there ?1
I have a class like this..
#import "MyObjectAddView.h"
#import "MyAppDelegate.h"
#define myAppDelegate (MyAppDelegate *) [[UIApplication sharedApplication] delegate]
@class MyObjectAddView;
...
0
votes
2answers
78 views
Requiring the presence of a method in an id
The Situation
My custom controller class has the following method:
- (void)requestViewControllerWithIdentifier:(NSString *)identifier fromObject:(id)object;
This causes object to receive this ...
0
votes
2answers
604 views
Using Protocols in Objective C to Transfer Data Between Different Objects?
Hey guys, I currently have a root table view which has a toolbar at the bottom and has labels and a refresh button within it, much like the Mail app's toolbar. This root table view controller obtains ...
1
vote
3answers
1k views
Checking whether an object conforms to two separate protocols in Objective-C
In Objctive-C when you declare an instance variable you can check if it conforms to a protocol on assignment at compile time like so:
id <MyProtocol> variable;
Is it possible to check whether ...
2
votes
2answers
979 views
Properly implementing a Delegate & Protocol
I created this test case as a simple example of my problem.
The AppDelegate initializes the TestViewController and adds it to the window
The TestViewController initializes the TestView and makes it ...
1
vote
1answer
579 views
How to implement a custom protocol
In this part of my code I get a warning message saying it doesn't implement the custom protocol I made.
detailViewController.delegate = self;
How do I implement the protocol?
Then when I run the ...
0
votes
2answers
128 views
What do we mean by an Object “sending messages” and how do protocols help an object advertise the messages it supports?
What do we mean by an Object "sending messages" and how do protocols help an object to advertise the messages it supports? Does anyone have an example?
0
votes
2answers
1k views
Is there an easy way for Xcode to let me know which methods of a protocol are required?
My experience is in Java development with Eclipse, where if I add a protocol in a header file there is a shortcut to add the required methods of that protocol in the implementation file. Does Xcode ...
2
votes
5answers
1k views
iPhone + Sharepoint
is there a way to connect the iPhone with Sharepoint?
I wonder, if it is possible to implement the HTTP or WEBDAV
protocol of Sharepoint in Cocoa/Objective-C.
Regards
1
vote
3answers
234 views
Why would I make an all-optional message protocol?
I'm writing a Cocoa API for a project and the API takes a delegate. The protocol that I came up with declares all the methods as optional, but why would I do that instead of just documenting the ...