Wednesday, January 21, 2015

Re: How do you call this syntax in objective-c?

> On Jan 20, 2015, at 7:19 AM, Aaron Lewis <the.warl0ck.1989@gmail.com> 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 gparker@apple.com Runtime Wrangler

_______________________________________________



No comments:

Post a Comment