File tree 2 files changed +0
-15
lines changed
2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 141
141
WARNING_CFLAGS = (
142
142
"-Werror",
143
143
"-Wall",
144
- "-Wno-deprecated-declarations",
145
144
);
146
145
};
147
146
name = Debug;
183
182
WARNING_CFLAGS = (
184
183
"-Werror",
185
184
"-Wall",
186
- "-Wno-deprecated-declarations",
187
185
);
188
186
};
189
187
name = Release;
Original file line number Diff line number Diff line change @@ -186,17 +186,4 @@ - (CGRect)sourceRectInView:(UIView *)sourceView
186
186
shareController.view .tintColor = [RCTConvert UIColor: options[@" tintColor" ]];
187
187
}
188
188
189
- #pragma mark UIActionSheetDelegate Methods
190
-
191
- - (void )actionSheet : (UIActionSheet *)actionSheet clickedButtonAtIndex : (NSInteger )buttonIndex
192
- {
193
- RCTResponseSenderBlock callback = [_callbacks objectForKey: actionSheet];
194
- if (callback) {
195
- callback (@[@(buttonIndex)]);
196
- [_callbacks removeObjectForKey: actionSheet];
197
- } else {
198
- RCTLogWarn (@" No callback registered for action sheet: %@ " , actionSheet.title );
199
- }
200
- }
201
-
202
189
@end
You can’t perform that action at this time.
0 commit comments