我在程序的两个不同部分从NSAlert得到奇怪的行为。行为是:
仅在第一次调用显示警报的方法时才会出现此行为。在第一次之后,它表现正常。
以下是行为发生的部分之一的代码:
UIAlertView * locationAlert = [[UIAlertView alloc] initWithTitle:@"You are in the right place." message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[locationAlert show];
[locationAlert release];
或者,如果您愿意,可以使用更多上下文:
- (IBAction)locateMe {
NSLog(@"About to check location");
locMan = [[CLLocationManager alloc] init];
locMan.delegate = self;
locMan.desiredAccuracy = kCLLocationAccuracyThreeKilometers;
locMan.distanceFilter = 1609; //1 mile
[locMan startUpdatingLocation];
}
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation * )oldLocation {
if (newLocation.horizontalAccuracy >= 0) {
CLLocation *airportLocation = [[[CLLocation alloc] initWithLatitude:51.500148 longitude:-0.204669] autorelease];
CLLocationDistance delta = [airportLocation getDistanceFrom: newLocation];
long miles = (delta * 0.000621371) + 0.5; //metres to rounded mile
if (miles < 3) {
UIAlertView * locationAlert = [[UIAlertView alloc] initWithTitle:@"You are in the right place." message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[locationAlert show];
[locationAlert release];
[locMan stopUpdatingLocation];
} else {
UIAlertView * locationAlert = [[UIAlertView alloc] initWithTitle:@"You are not in the right place." message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[locationAlert show];
[locationAlert release];
[locMan stopUpdatingLocation];
}
}
}
- (void) locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
UIAlertView * locationAlert = [[UIAlertView alloc] initWithTitle:@"Error." message:error.code delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[locationAlert show];
[locMan release];
locMan = nil;
}
有什么想法吗?感谢。
编辑---------
另一个地方是:
- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError {
NSString * errorString = [NSString stringWithFormat:@"Unable to download feed from web site (Error code %i )", [parseError code]];
NSLog(@"error parsing XML: %@", errorString);
UIAlertView * errorAlert = [[UIAlertView alloc] initWithTitle:@"Error loading content" message:errorString delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[errorAlert show];
}
对于上下文,第一种情况在AppDelegate中,第二种情况在第一个选项卡视图的视图控制器中。每当没有互联网连接时重新加载xml时,会出现第二个问题。第一个只在第一次调用函数时出现。
编辑-----
如果我移动警报就可以了。不幸的是,这不是我想要的地方!
- (IBAction)locateMe {
UIAlertView * locationAlert = [[UIAlertView alloc] initWithTitle:@"You are in the right place." message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[locationAlert show];
/*
NSLog(@"About to check location");
locMan = [[CLLocationManager alloc] init];
locMan.delegate = self;
locMan.desiredAccuracy = kCLLocationAccuracyThreeKilometers;
locMan.distanceFilter = 1609; //1 mile
[locMan startUpdatingLocation];*/
}
我设置了一些NSLog条目并发现尽管添加了[locMan stopUpdatingLocation]
,但didUpdateToLocation函数已多次运行。
我想自发消失的原因是再次调用警报视图并且程序清除第一个实例以自动为第二个实例让路。
关于为什么[locMan stopUpdatingLocation]
不起作用的任何想法都会受到赞赏,但同时我只是将locationAlert的声明移出函数(因此它是全局的),在初始定位中设置它我在第一次调用时运行并使用以下内容:
[locationAlert show];
locationAlert = nil;
这样就完美无缺。
答案 0 :(得分:2)
首次显示提醒时,您并未关闭位置管理员。由于设备精确定位(即精度提高),您的回调将(可能)被多次调用。您应该在警报显示后使用[locMan stopUpdatingLocation]。
答案 1 :(得分:1)
我设置了一些NSLog条目并发现尽管添加了[locMan stopUpdatingLocation],但didUpdateToLocation函数已多次运行。
我想自发消失的原因是再次调用警报视图并且程序清除第一个实例以自动为第二个实例让路。
关于为什么[locMan stopUpdatingLocation]不起作用的任何想法都会受到赞赏,但同时我只是将locationAlert的声明移出函数(因此它是全局的),在初始定位我的时候设置它函数并在第一次调用时使用以下内容:
[locationAlert show];
locationAlert = nil;
这样就完美无缺。
答案 2 :(得分:0)
我认为NSAlert 自行消失是解决这个问题的关键。
很容易解释为什么警报会意外显示,即它刚刚被意外调用。但是,以编程方式关闭警报并不常见。无论导致它消失的是最有可能再次触发显示。
要调试我建议:
(1)查看您的代码以获取NSAlert – dismissWithClickedButtonIndex:animated:
方法,并查看您是否实际上以编程方式解除了警报。
(2)我相信(有人仔细检查我),警报视图作为子视图添加到当前屏幕上的任何基本视图。可能是基本视图由于某种原因消失并且使用它的警报视图。如果视图消失然后再次快速显示,则警报最前方可能不明显。 (编辑:见Ed Marty的评论如下。)
(3)由于这发生在app的两个独立部分中,因此要比较两者以找到共同的元素或结构。这个共同因素可能是原因。 一个奇怪的问题。
如果locMan
是实例变量,则应将其定义为属性,并且每次使用self.locMan
时都应该访问它。通过直接访问它,您将失去自动保留管理。
答案 3 :(得分:0)
我遇到了同样的问题,警报对话框暂时出现,重新出现,最后在被解雇后再次出现。在决定显示警报视图之前,我正在进行字符串比较:
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if([string isEqualToString:@"OK"]) {
NSLog(@"(Settings)Registration Successful");
statusField.text = @"Registration successful!";
[settingsActivity stopAnimating];
}
else {
NSLog(@"(Settings)Registration Failure");
[settingsActivity stopAnimating];
UIAlertView * regFail = [[[UIAlertView alloc] initWithTitle:@"Registration Error!" message:@"Please check your email address and try again." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil] autorelease];
[regFail show];
}}
要纠正此行为,我只需验证返回的字符串,而不是仅显示警告:
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
if([string isEqualToString:@"OK"]) {
NSLog(@"(Settings)Registration Successful");
statusField.text = @"Registration successful!";
[settingsActivity stopAnimating];
}
else if([string isEqualToString:@"Error"]) {
NSLog(@"(Settings)Registration Failure");
[settingsActivity stopAnimating];
UIAlertView * regFail = [[[UIAlertView alloc] initWithTitle:@"Registration Error!" message:@"Please check your email address and try again." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil] autorelease];
[regFail show];
}
答案 4 :(得分:0)
我在处理位置管理器时也遇到了同样的问题。在这里我用Nslog检查但是它正在执行多次,最后我想知道我正在创建多个对象并使用Sharedinstance用于包含位置管理器的相同ViewController但是我没有释放对象,所以在特定位置如果我们创建了多少个对象多次定位检测。因此,在使用LocationManger时,请检查处理对象以彻底减少这些类型的问题。