助けが必要です。アプリのすべての関数で使用できる変数が必要です
@interface A()
@property (assign) CGFloat x;
@end
@implementation
@synthesize x = _x;
-(void)DidLoad
{ ...
self.x = 1.0; }
-function1
{ CGFloat y;
y = x;
NSString *string = [NSString stringWithFormat:"%f", y];
NSLog(@"%@", string);
}
しかし、「y」は空の変数です! 初心者を助けてくれませんか?