Skip to content

Commit

Permalink
remove deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
skywinder committed Jul 10, 2014
1 parent ffd8817 commit b78595e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Pickers/ActionSheetCustomPicker.m
Expand Up @@ -53,12 +53,7 @@ - (UIView *)configuredPickerView {

// Allow the delegate to override and set additional configs
//to backward compatibility:
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
if ([_delegate respondsToSelector:@selector(configurePickerView:)]) {
[_delegate configurePickerView:pv];
#pragma clang diagnostic pop
if ([_delegate respondsToSelector:@selector(actionSheetPicker:configurePickerView:)]) {
if ([_delegate respondsToSelector:@selector(actionSheetPicker:configurePickerView:)]) {
[_delegate actionSheetPicker:self configurePickerView:pv];
}
self.pickerView = pv;
Expand Down

0 comments on commit b78595e

Please sign in to comment.