スライダーを動かすと上下に移動するカスタム ビュー (rectView) 内に CGRect を作成しようとしています。
私のスライダーの IBAction は次のメソッドを呼び出します: (これは正常に呼び出されます)
- (void)moveRectUpOrDown:(int)y
{
self.verticalPositionOfRect += y;
[self setNeedsDisplay];
}
私の drawRect メソッド:
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGFloat size = 100;
self.rect = CGRectMake((self.bounds.size.width / 2) - (size / 2),
self.verticalPositionOfRect - (size / 2),
size,
size);
CGContextAddRect(context, self.rect);
CGContextFillPath(context);
}
私のカスタム ビューの initWithFrame は setNeedsDisplay を使用して drawRect メソッドを呼び出しますが、何らかの理由で moveRectUpOrDown が drawRect を呼び出しません。
私が間違っていることはありますか?
わかりやすくするために、実装全体を以下に示します。
//ViewController.h
#import <UIKit/UIKit.h>
#import "rectView.h"
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet rectView *rectView;
- (IBAction)sliderChanged:(id)sender;
@end
//ViewController.m
#import "ViewController.h"
@implementation ViewController
@synthesize rectView;
- (void)viewDidLoad
{
[super viewDidLoad];
self.rectView = [[rectView alloc] initWithFrame:self.rectView.frame];
}
- (void)viewDidUnload
{
[super viewDidUnload];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
- (IBAction)sliderChanged:(id)sender
{
UISlider *slider = sender;
CGFloat sliderValue = slider.value;
[self.rectView moveRectUpOrDown:sliderValue];
}
@end
//rectView.h
#import <UIKit/UIKit.h>
@interface rectView : UIView
- (void)moveRectUpOrDown:(int)y;
@end
//rectView.m
#import "rectView.h"
@interface rectView ()
@property CGRect rect;
@property int verticalPositionOfRect;
@end
@implementation rectView
@synthesize rect, verticalPositionOfRect;
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.verticalPositionOfRect = (self.bounds.size.height / 2);
[self setNeedsDisplay];
}
return self;
}
- (void)moveRectUpOrDown:(int)y
{
self.verticalPositionOfRect += y;
[self setNeedsDisplay];
}
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGFloat size = 100.0;
self.rect = CGRectMake((self.bounds.size.width / 2) - (size / 2),
self.verticalPositionOfRect - (size / 2),
size,
size);
CGContextAddRect(context, self.rect);
CGContextFillPath(context);
}
@end
助けてくれてありがとう :)