我有一個UISegmentedControl 3段,我想改變一個段1的寬度,當用戶選擇任何段。這裏是代碼:iPhone - UISegmentedControl段寬度= 0?
// the UISegmentedControl is created
[segmentedControl addTarget:self action:@selector(changeIt:)
forControlEvents:UIControlEventValueChanged];
//...
// and this is the changeIt method:
- (void) changeIt:(id)sender {
// discover the original width of segment 1, to restore it later
UISegmentedControl *seg = (UISegmentedControl*)sender;
CGFloat segWidth = [seg widthForSegmentAtIndex:1];
// At this point segWidth = 0 ?????????????????
// note: seg is not nil at this point. Printing seg to console shows it is
// a valid UISegmentedControl...
}
任何線索?謝謝。
oooooooooops,我錯過了。謝謝! – SpaceDog