我一直在写一个简单的华氏/摄氏度转换器风格的应用程序。它在模拟器中运行良好,但是当我在 iPhone 4 上测试应用程序时,当我来回移动滑块时,它非常生涩且更新缓慢。
我的主视图控制器看起来像这样(删除了一些垃圾):
#import "MLViewController.h"
#import "MLGradeModel.h"
#import "MLGrade.h"
@interface MLViewController ()
@property (nonatomic, strong) MLGradeModel *gradeModel;
@end
@implementation MLViewController
@synthesize displayLeft = _displayLeft;
@synthesize displayRight = _displayRight;
@synthesize gradeModel = _gradeModel;
@synthesize buttonLeft = _buttonLeft;
@synthesize buttonRight = _buttonRight;
- (IBAction)dragEnter:(UISlider*)sender {
[self sliderUpdate: sender];
}
- (IBAction)sliderInput:(UISlider*)sender {
[self sliderUpdate:sender];
}
- (IBAction) sliderValueChanged:(UISlider *)sender {
[self sliderUpdate:sender];
}
-(IBAction)sliderUpdate:(UISlider*)sender
{
UILabel *myDisplayLeft = self.displayLeft;
UILabel *myDisplayRight = self.displayRight;
float sliderValue = [sender value];
int pos = sliderValue*1000/CONVERSION_SCALE;
NSString *strLeft = [self.gradeModel readGradeFromLeftAtPos:pos];
NSString *strRight = [self.gradeModel readGradeFromRightAtPos:pos];
[myDisplayLeft setText:strLeft];
[myDisplayRight setText:strRight];
// try to redraw, maybe less jerky?
[self.view setNeedsDisplay];
}
-(int) getSliderValue
{
float initialValue = [self.sliderInput value];
return initialValue * 100;
}
- (void)viewDidLoad
{
[super viewDidLoad];
MLGradeModel *model = [MLGradeModel sharedMLGradeModel];
self.GradeModel = model;
}
@end
gradeModel
是一个NSMutableArray
,NSMutableArrays
其中包含NSString
值。拖动滑块时,应读取数组中的相应位置。然后应该将其值设置为 UILabel。
我认为这应该是最简单的事情。UISlider 的出口和动作已被拖到情节提要中。
编辑:此外,当我在手机上运行应用程序时,日志显示滑块输入已被采用,但窗口并未以“可以这么说”的速度更新。例如,然后我将滑块从左向右移动,事件会显示在日志中,但标签会以 0.5 秒的延迟重新绘制。
编辑:[self.view setNeedsDisplay];
被添加为强制重绘的测试。当该行被注释掉时,该程序的工作同样糟糕/缓慢。
编辑:当我将 sliderUpdate 更改为:
-(IBAction)sliderUpdate:(UISlider*)sender
{
float sliderValue = [sender value];
int pos = sliderValue*10;
NSString *strFromInt = [NSString stringWithFormat:@"%d",pos];
[self.displayLeft setText:strFromInt];
[self.displayRight setText:strFromInt];
}
- 我没有连接 UISlider 的所有事件吗?我只将 valueChanged 设置为我的 viewController 的滑块输入(调用滑块更新)。