Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am sure I have read this somewhere, Can anyone tell me what the < > represent in the following interface?

@interface GameFinder : NSObject <NSNetServiceBrowserDelegate>
@end

is NSObject adopting <NSNetServiceBrowserDelegate> ?

EDIT

One thing that is confusing me ...

in the example I have.The interface shows NSNetServiceBrowserDelegate

@interface ITunesFinder : NSObject <NSNetServiceBrowserDelegate>
@end

but the implementation shows netServiceBrowser, are these one in the same?

@implementation ITunesFinder
-(void) netServiceBrowser: (NSNetServiceBrowser *) browser
           didFindService: (NSNetService *) service
               moreComing: (BOOL) moreComing {

gary

share|improve this question

4 Answers

up vote 12 down vote accepted

The angle brackets denote Protocols that this class meets. There are details on Protocols int the Objective-C Wikipedia article that may help clear up some things for you. Protocols contain both required and optional routines that your class could supply. In the latter case if the routine is not implemented by your class a default implementation/behavior is used instead.

share|improve this answer

< > represent a protocol (or list of protocols) to which a class conforms. An Objective-C protocol is like an interface in Java: it's a list of methods that the conforming class must implement.

share|improve this answer
+1 For a short and sweet answer. Just one small thing; it is a list of methods that the conforming class should implement. There is no must. – PeyloW Oct 9 '09 at 10:40
True, but gcc throws a warning if you don't implement all the methods. – mipadi Oct 9 '09 at 12:32

The angle brackets in an interface declaration denote the list of Objective-C protocols that the interface implements. In this case, that GameFinder conforms to the NSNetServiceBrowserDelegate protocol. The Objective-C Language Reference has a full section on protocols (and is a reference you should keep handy in general while learning Objective-C). Basically, a Protocol is an interface that describes the methods a class must implement to conform to that protocol. Classe interfaces may declare, using the angle bracket notation, that they conform to (implement) a protocol. The compiler will check protocol conformance if you provide protocol information in type declarations:

@interface Foo <Bar>
...

- (void)methodRequiringBar:(id<Bar>)arg;
@end

@interface Foo2 <Baz>
...
@end


id<Bar> v = [[Foo alloc] init]; //OK
id<Baz> v = [[Foo alloc] init]; //warning

[v methodRequiringBar:[[Foo2 alloc] init]]; //warning

The compiler will also warn you if a class interface declares conformance to a protocol but not all of the required methods in that protocol are implemented by the class' implementation:

@protocol Bar
@required
- (void)requiredMethod;
@optional
- (void)optionalMethod;
@end

@interface Foo <Bar>
...
@end

@implementation Foo
- (void)optionalMethod {
...
}
@end

will give a warning that the Bar protocol is not fully implemented.

share|improve this answer

NSNetServiceBrowser is a class. NSNetServiceBrowserDelegate is a protocol specifying what methods an NSNetServiceBrowser's delegate must implement.

share|improve this answer
Thanks Chuck, so netServiceBrowser is a method of NSNetServiceBrowser? – fuzzygoat Oct 8 '09 at 19:45
AFAIK, there is no such method as "netServiceBrowser". If you're talking about netServiceBrowser:didFindService:moreComing:, then it's a method that an NSNetServiceBrowser's delegate can implement. – Chuck Oct 8 '09 at 20:09
Excellent, thank you. – fuzzygoat Oct 8 '09 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.