Skip to content

Instantly share code, notes, and snippets.

@nhindman
Created July 21, 2015 20:19
Show Gist options
  • Select an option

  • Save nhindman/0a7c3d930ac39fae16b0 to your computer and use it in GitHub Desktop.

Select an option

Save nhindman/0a7c3d930ac39fae16b0 to your computer and use it in GitHub Desktop.
#import "ViewController.h"
#import <URXSearch/URX.h>
#import <URXWidgets/URXWidgets.h>
@interface ViewController ()
@property (strong, nonatomic) IBOutlet URXListenButtonView *listenButtonView;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.listenButtonView.initialQuery = @"giants";
self.listenButtonView.domainFilters = @"stubhub.com";
// self.listenButtonView.nearCoordinates = @"40.74,-73.98";
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment