Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c52fd6 commit 10515b6Copy full SHA for 10515b6
iPhone Apps/rfduino/ScanViewController.m
@@ -270,6 +270,20 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
270
271
#pragma mark - RfduinoDiscoveryDelegate methods
272
273
+#if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
274
+
275
+- (void)shouldDisplayAlertTitled:(NSString *)title messageBody:(NSString *)body
276
+{
277
+ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
278
+ message:body
279
+ delegate:nil
280
+ cancelButtonTitle:@"OK"
281
+ otherButtonTitles:nil];
282
+ [alert show];
283
+}
284
285
+#endif
286
287
- (void)didDiscoverRFduino:(RFduino *)rfduino
288
{
289
NSLog(@"didDiscoverRFduino");
0 commit comments