Results 2 issues of tianyang

#pragma mark - 用来控制移动过程中计算手指划过的时间 -(float)moveProgressControllWithTempPoint:(CGPoint)tempPoint{ //90代表整个屏幕代表的时间 float tempValue = self.touchBeginValue + TotalScreenTime * ((tempPoint.x - self.touchBeginPoint.x)/([UIScreen mainScreen].bounds.size.width)); if (tempValue > [self duration]) { tempValue = [self duration]; }else if (tempValue...