これが私のコードです:
#import "ViewController.h"
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(50.0, 50.0, 0, 0)];
[self.view addSubview:view1];
}
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [[event allTouches] anyObject];
if([touch.view isEqual:self]) {
CGPoint point = [[touches anyObject] locationInView:self];
NSLog(@"%@",NSStringFromCGPoint(point));
self.view1.center = point;
}
}
touchesMovedメソッドからクラス「UIView」のインスタンス「view1」にアクセスできるようにしたいです。
前もって感謝します!