> On Jan 20, 2015, at 7:19 AM, Aaron Lewis <[email protected]> wrote: > > When you define an interface you can use '<>' to support delegates > > @interface RootViewController : UITableViewController > <UITableViewDelegate, UITableViewDataSource> > > How do you call/pronounce this '<>' syntax in english? > I'm trying to find more details on it, but I don't know how to search for it > ..
All of these descriptions are commonly used: "Class RootViewController conforms to protocols UITableViewDelegate and UITableViewDataSource." "Class RootViewController implements protocols UITableViewDelegate and UITableViewDataSource." "Class RootViewController adopts protocols UITableViewDelegate and UITableViewDataSource." -- Greg Parker [email protected] Runtime Wrangler _______________________________________________ Do not post admin requests to the list. They will be ignored. Objc-language mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/objc-language/archive%40mail-archive.com This email sent to [email protected]
