在Objective-C中,我向方法发送一个参数,但它总是返回null。
我的代码:
-(IBAction) clickNumero: (id) sender
{
NSString *num = [(UIButton *)sender currentTitle];
float numFloat = [num floatValue];
[self verificarOperador:(float)numFloat];
}
-(float) verificarOperador:(float)valor
{
return valor;
}
答案 0 :(得分:1)
你确定-currentTitle只返回一个数字字符串吗?您应该添加NSLog(@"Button Title: %@", num);
以确保。