コードをより管理しやすくするためにリファクタリングしています。他のクラスにロードできる関数を含むクラスを作成したいと考えています。
関数というクラスを作成し、funtions.h を ViewController クラスの .h にインポートし、関数 .m を ViewController.m にインポートしましたが、呼び出されてクラッシュしたときにコンパイラが hasInternetconnection メソッドを認識しません。
このクラスでこのメソッドを呼び出せない理由について、完全に迷っているわけではありません
これが私のコードです。s/o と google をよく調べましたが、何が間違っているのかまだわかりません
関数.h
#import <Foundation/Foundation.h>
@interface Functions : NSObject
-(BOOL)hasInternetConection;
@end
関数.m
#import "Functions.h"
@implementation Functions
-(BOOL)hasInternetConection{
NSURL *url=[NSURL URLWithString:@"www.google.com"];
NSURLRequest *req=[NSMutableURLRequest requestWithURL:url];
NSHTTPURLResponse *res=nil;
[NSURLConnection sendSynchronousRequest:req returningResponse:&res error:NULL];
if (res!=nil) {
return NO;
}else{
return YES;}
}
@end
HomeViewController.h
...
#import <QuartzCore/QuartzCore.h>
#import "multiShotViewController.h"
#import "Functions.h"
...
@interface HomeViewController : UIViewController {
UIGlossyButton *b;
HomeViewController.m
...
#import "detailsViewController.h"
#import "Functions.h"
#define Kwelome @"welcomeread"
@interface HomeViewController ()
@end
@class Functions;
@implementation HomeViewController
@synthesize tripName;
@synthesize databasePath, deathtrail;
@synthesize lampingbtn,deerstalkingbtn,boundarybtn, optionsbtn,shootingbtn;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
self.navigationItem.title = @"Home";
UIColor *backg=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"bgcamo.png"]];
self.view.backgroundColor=backg;
[backg release];
}
return self;
}
...