我试图在目标c中进行类型转换,但只能提出以下不起作用的代码。有没有人知道如何解决这个问题?
@interface AppController
{
NSTextField *myTextField;
}
@property (nonatomic, retain) IBOutlet NSTextField *myTextField;
-(IBOutlet) foo
实现:
-(IBOutlet) foo
{
a = [myTextField.stringValue intValue]
float b = int(a)/3
int c = int(b)
}