id - - void *, , Objective-C. , id , , :
- (id)animal; // OK if 'animal' could be any type of object
- (Animal*)animal; // much better if you know that 'animal' points to an object of type 'Animal'
, Cocoa Cocoa Touch. UIView:
- (BOOL)isDescendantOfView:(UIView *)view;
- (UIView *)viewWithTag:(NSInteger)tag;
, UIView* . -, UIView, .
UIView*, , UIView:
[[topView viewWithTag:someTag] removeFromSuperview];
, .