Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @interface XYZPieChartView : UIView
  2. @property (weak) id <XYZPieChartViewDataSource> dataSource;
  3. ...
  4. @end
  5.  
  6. NSString *thisSegmentTitle;
  7. if ([self.dataSource respondsToSelector:@selector(titleForSegmentAtIndex:)]) {
  8. thisSegmentTitle = [self.dataSource titleForSegmentAtIndex:index];
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement