我试图从一个阵列听到我的呼声。 但没有幸运。 它被转往另一类。
MainClass.h
#import First
@class First;
@interface MainClass : UIViewController{
NSMutableArray *listArray;
}
///////////////////
MainClass.m
First *first = [[First alloc] init];
listArray = [[NSMutableArray alloc]init];
[listArray addObject:@"first"];
[listArray addObject:@"second"];
int Aslot = 0;
int sumA;
float level = 5, insample = 10;
NSString *slotA =[listArray objectAtIndex:ASlot];
sumA = [slotA out:insample andlevels:level];
/////////
First.h
-(float)out:(float)insample andlevels:(float)level;
First.m
-(float)out:(float)insample andlevels:(float)level{
float outsample = insample + 10 * level;
return outsample;
}
我要求从“第一”或“第二”阵列中划出一定位置的A(级),这样它就能够使用这种方法。
我有一个表格,在我第一次选择时,它把样本和其他参数发送到另一个类别,然后再处理这些样本。
(a) 总和(b)
But I m getting an error saying that NSString may not respond to my parameters out:andlevels. Please help..