Lines Matching +full:- +full:- +full:show +full:- +full:error
8 * http://www.apache.org/licenses/LICENSE-2.0
29 - (void)viewDidLoad {
39 - (void)viewDidAppear:(BOOL)animated {
48 - (void)dealloc {
52 - (void)observeValueForKeyPath:(NSString *)keyPath
72 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"WALT Connection Error"
77 [alert show];
84 - (void)shareLog:(id)sender {
90 formatter.dateFormat = @"yyyy-MM-dd'T'HH-mm-ss";
98 NSError *error = nil;
99 if ([logger writeToURL:logURL error:&error]) {
106 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Log Write Error"
107 error:error];
108 [alert show];
111 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Log Write Error"
116 [alert show];
120 #pragma mark - UITableView Delegate
122 - (void)tableView:(UITableView *)tableView
126 // Show/hide the disclosure indicator on the "Measure Latency" cells.
133 - (NSIndexPath *)tableView:(UITableView *)tableView
137 NSError *error = nil;
138 if (![_client checkConnectionWithError:&error] ||
139 ![_client syncClocksWithError:&error]) {
140 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"WALT Connection Error"
141 error:error];
142 [alert show];