我有以下 UIViewController 类:
文件:ResultsDataViewController.h
@interface ResultsDataViewController : UIViewController
@property (nonatomic, strong) NSString* name;
@end
文件:ResultsDataViewController.m
#import "ResultsDataViewController.h"
@interface ResultsDataViewController ()
@end
@implementation ResultsDataViewController
@synthesize data;
然后我有我的 UIView 类名 Plot.h/m
绘图.h:
@interface PlotGraph : UIView <CPTBarPlotDataSource, CPTBarPlotDelegate>
@property (nonatomic, strong) NSString* receivedName;
@end
绘图.m:
#import "Plot.h"
@interface Plot()
@end
@implementation PlotGraph
@synthesize receivedName;
...
=====
问题:
如何从我的 UIViewController 传递 name 的值并将其分配给我的 UIView 中的变量 receivedName?
UIView Plot 是我的 UIViewController DataViewController 中的一个视图