I am a newbie to objective C. I was looking through a few tutorials online to create like a dropdown using the iOS sdk. So I came across the picker view, and from a few online resources I came to know that I would have to provide a delegate and a datasource for the picker.
And the syntax in the header file for the interface is something like this.
@interface ViewController : UIController <UIPickerViewDataSource, UIPickerViewDelegate>
@end
Now, I understand that UIController is the parent of ViewController, but what does the greater than & less than mean here?