CPTGraphHostingView
CorePlot グラフを保持するために、ViewController にカスタム クラスの UIView が含まれている単一のビュー アプリケーションがあります。その UIView のコンテンツは、 と呼ばれる NSObject サブクラスによって管理されSimpleScatterPlot
ます。このSimpleScatterPlot
オブジェクトは、グラフの構成に必要なすべてのパラメーター (軸の範囲、ラベル、ポイントの数など) を保持します。
ViewController.h
#import <UIKit/UIKit.h>
#import "CorePlot-CocoaTouch.h"
#import "SimpleScatterPlot.h"
@interface ViewController : UIViewController
{
IBOutlet CPTGraphHostingView *_graphHostingView;
SimpleScatterPlot *_scatterPlot;
NSMutableData *dataConexion;
}
@property (nonatomic,strong) NSArray *valor;
@property (nonatomic,strong) NSArray *strAnoMes;
@property (nonatomic,strong) NSArray *indicador;
@property (nonatomic, retain) SimpleScatterPlot *scatterPlot;
@end
ViewController.m には、いくつかの JSON データからいくつかの配列を初期化するメソッドがいくつかあります。
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize indicador,valor,strAnoMes;
- (void)viewDidLoad
{
[super viewDidLoad];
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSString *urlString = @"http://xxxx/ios/datosgrafica.php";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
(void)[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
dataConexion = [[NSMutableData alloc] init];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)theData
{
[dataConexion appendData:theData];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
indicador = [NSJSONSerialization JSONObjectWithData:dataConexion options:nil error:nil];
// ARRAYS OF INTEREST
strAnoMes = [indicador valueForKey:@"StrAnoMes"];
valor = [indicador valueForKey:@"Valor"];
self.scatterPlot = [[SimpleScatterPlot alloc] initWithHostingView:_graphHostingView andData:pointArray];
[self.scatterPlot initialisePlot];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
UIAlertView *errorView = [[UIAlertView alloc] initWithTitle:@"Error" message:@"The download could not complete - please make sure you're connected to either 3G or Wi-Fi." delegate:nil cancelButtonTitle:@"Dismiss" otherButtonTitles:nil];
[errorView show];
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
ではSimpleScatterPlot.m
、配列 " valor
" を使用して軸の範囲を構成したいと考えています。また、配列 " strAnoMes
" を使用して xAxis にカスタム ラベルを描画したいと考えています。
ViewController で定義された配列を SimpleScatterPlot に渡すにはどうすればよいですか?
しようとしまし#import "ViewController.h"
たが、エラーが発生します。他のアイデアはありますか?この状況にアプローチする最善の方法は何ですか?