0
를 선언하지 : 도달 가능성에 대한 눈에 띄는 @ 인터페이스가 선택 startNotifier눈에 띄는 @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
안녕하세요! 정말 고마워. : D – megZo
당신을 진심으로 환영합니다. 업데이트 된 답변에서 더 많은 제안을 참조하십시오. – rmaddy
화려한! 감사 :) – megZo