Я пытаюсь переместить точку, нарисованную в UIView, на основе значения UISlider. Код ниже для UIView (subview?) С пользовательским классом (WindowView) на UIViewController.Получить текущее значение UISlider в drawRect: метод
WindowView.h
#import <UIKit/UIKit.h>
@interface WindowView : UIView
- (IBAction)sliderValue:(UISlider *)sender;
@property (weak, nonatomic) IBOutlet UILabel *windowLabel;
@end
WindowView.m
#import "WindowView.h"
@interface WindowView()
{
float myVal; // I thought my solution was using an iVar but I think I am wrong
}
@end
@implementation WindowView
@synthesize windowLabel;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
- (void)sliderValue:(UISlider *)sender
{
myVal = sender.value;
windowLabel.text = [NSString stringWithFormat:@"%f", myVal];
}
- (void)drawRect:(CGRect)rect
{
// I need to get the current value of the slider in drawRect: and update the position of the circle as the slider moves
UIBezierPath *circle = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(myVal, myVal, 10, 10)];
[circle fill];
}
@end
Sweet! Я знал, что это просто. Спасибо, миллиард! –