我对 iOS 编程还很陌生,并且仍然学到了很多东西。我希望在某个屏幕上自动弹出警报视图。基本上我正在为应用程序使用新的 qualquamm Gimbal 信标。此代码在首次找到信标时触发日志:
// FYXVisitDelegate protocol
- (void)didArrive:(FYXVisit *)visit;
{
// this will be invoked when an authorized transmitter is sighted for the first time
NSLog(@"I arrived at a Gimbal Beacon!!! %@", visit.transmitter.name);
}
我想做的是当第一次发现日志说什么只是为了测试时触发弹出或警报。我想给警报打上烙印,但听说这在 iOS 7 中已经不可能了,所以如果有任何关于弹出窗口的建议,我也很乐意听到。
这就是我没有运气的情况(尽管日志仍然被触发):
- (void)didArrive:(FYXVisit *)visit;
{
// this will be invoked when an authorized transmitter is sighted for the first time
NSLog(@"I arrived at a Gimbal Beacon!!! %@", visit.transmitter.name);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Welcome" message:@"%@" delegate:nil cancelButtonTitle:@"Close" otherButtonTitles:@"View", visit.transmitter.name, nil];
[alert show];
}