程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-segmentedControl打開順序顛倒

ios-segmentedControl打開順序顛倒

編輯:編程綜合問答
segmentedControl打開順序顛倒
 - (void)viewDidLoad
    {
   [super viewDidLoad];

    [self.segmentedControl removeAllSegments];
    s = 0;
    for (NSDictionary *dictionary in self.top.segments) {
        [_segmentedControl insertSegmentWithTitle:dictionary [@"sTitle"] atIndex:s animated:NO];
        self.bioTextView.text = [NSString stringWithFormat:@"%@", dictionary [@"sData"]];
    }}

為什麼segmentedControl以顛倒的順序開始?請高手指點。謝謝

最佳回答:


變量 s的值一直為0 ,沒有在執行完成後累加

 for (NSDictionary *dictionary in self.top.segments) {
        [_segmentedControl insertSegmentWithTitle:dictionary [@"sTitle"] atIndex:s animated:NO];
        self.bioTextView.text = [NSString stringWithFormat:@"%@", dictionary [@"sData"]];
        s++; //這裡來累加
    }}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved