這應該做的伎倆:
這裏是我的功能,設置標籤的文本,它看起來像這樣
-(void)seeValue
{
appdelegate = (stackoverflowQueriesAppDelegate*)[[UIApplication sharedApplication]delegate];
lbl.text = [NSString stringWithFormat:@"%.f",appdelegate.f];
}
我爲我的標籤LBL的文本指定一個浮點值,這裏是目前的代碼視圖我的appdelegate文件
內
@interface stackoverflowQueriesAppDelegate : NSObject {
float f;
}
@property (nonatomic,assign) float f;
@property (nonatomic, retain) IBOutlet UIWindow *window;
@end
,這裏是爲了我的appdelegate.m文件
@implementation stackoverflowQueriesAppDelegate
@synthesize window=_window,f;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
f= 225.32;
myview *obj = [[myview alloc]init];
[self.window addSubview:obj.view];
[self.window makeKeyAndVisible];
return YES;
}
希望這有助於
您的格式可能不正確,即'nil'。嘗試把它放在'NSLog()'中。 – 2011-05-27 23:52:00
什麼類是'appDelegate.times'的一個實例? – 2011-05-27 23:52:16
'次'是一個浮點數嗎?我注意到你正在使用兩個不同的'NSString'佔位符。 – raidfive 2011-05-27 23:52:46