2015-10-16 50 views

回答

1

首先需要一流水平陣列並在viewDidLoad中初始化它,然後在任何像這樣的按鈕操作添加浮點值.....

NSMutableArray *arr = [[NSMutableArray alloc] initWithCapacity:5];// define your capacity over here. 

-(IBAction)addValue 
{ 
    [arr addObject:[NSNumber numberWithFloat:[yourTxtFld.text floatValue]]]; 
} 
+0

你爲什麼不嘗試與容量的方法 –

+0

@Anbu陣列。 Karthik完成,謝謝 –

+0

我的好朋友, –