Решение

We use cookies. Read the Privacy and Cookie Policy

Решение

Создайте экземпляр класса UIRotationGestureRecognizer и присоедините его к целевому виду:

— (void)viewDidLoad {

[super viewDidLoad];

self.helloWorldLabel = [[UILabel alloc] initWithFrame: CGRectZero];

self.helloWorldLabel.text = @"Hello, World!";

self.helloWorldLabel.font = [UIFont systemFontOfSize:16.0f];

[self.helloWorldLabel sizeToFit];

self.helloWorldLabel.center = self.view.center;

[self.view addSubview: self.helloWorldLabel];

self.rotationGestureRecognizer = [[UIRotationGestureRecognizer alloc]

initWithTarget: self

action:@selector(handleRotations:)];

[self.view addGestureRecognizer: self.rotationGestureRecognizer];

}

Данный текст является ознакомительным фрагментом.