作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到这个错误:可达性没有可见的@interface 声明选择器 startNotifier
我已经包含了 Reachability.h 和 .m 文件。我对 Objective-C 非常陌生,错误可能真的很小!但任何帮助都会很棒!
我的 helloworldViewController.m
#import "helloworldViewController.h"
#import "Reachability.h"
#import <SystemConfiguration/SystemConfiguration.h>
@interface helloworldViewController ()
@end
@implementation helloworldViewController
@synthesize networkstatus;
@synthesize reach;
#pragma mark Reachability changed
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
// Check network
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
self.reach = [Reachability reachabilityWithHostName:@"www.apple.com"];
[self.reach startNotifer];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)reachabilityChanged:(NSNotification*)note
{
Reachability* r = [note object];
NetworkStatus ns = r.currentReachabilityStatus;
if (ns == NotReachable)
{
NSString* msg = @"Network problems have rendered the iTunes store inaccessible; please try again later.";
UIAlertView* av = [[UIAlertView alloc] initWithTitle:nil
message:msg
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[av show];
//[av release];
}
}
@end
这是我的 helloworldViewController.h
#import <UIKit/UIKit.h>
#import "Reachability.h"
@interface helloworldViewController : UIViewController{
Reachability* reach;
IBOutlet UILabel *networkstatus;
}
@property(strong,nonatomic) UILabel *networkstatus;
@property (nonatomic, retain) Reachability* reach;
@end
最佳答案
您拼错了方法。更改此行:
[self.reach startNotifer];
到:
[self.reach startNotifier];
由于你是新手,这里还有一些建议:
#import "Reachability.h"
替换为@class Reachability
。@synthesize
行。让编译器为您生成这些。这假设您使用的是最新的编译器/Xcode。strong
,另一个是retain
。如果您使用的是 ARC,请对两者都使用 strong
。如果您正在使用 MRC,请为两者使用 retain
。HelloWorldViewController
。将 networkstatus
更改为 networkStatus
。关于ios - 可达性没有可见的@interface 声明选择器 startNotifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16003457/
有时我必须检查互联网连接并为此使用“可达性”。 最好使用“可达性”手动检查互联网连接,例如: BOOL status = ([[Reachability reachabilityForInternet
我得到这个错误:可达性没有可见的@interface 声明选择器 startNotifier 我已经包含了 Reachability.h 和 .m 文件。我对 Objective-C 非常陌生,错误可
我的 Reachability 完全按照此 thread 中的建议工作. 我正在使用 open source Reachability .但是我没有使用 block 而是使用通知,因此该过程与 App
我有一个在使用 bluez d-bus api 的 Raspberry Pi 上运行的 C++ 应用程序。它支持来自不同供应商的多个传感器,但在大多数情况下,一旦我开始使用第一个传感器,添加新传感器就
我是一名优秀的程序员,十分优秀!