xcode как определить высоту и ширину вида - PullRequest
1 голос
/ 10 мая 2011

Привет всем, я француз, так что используйте меня для моего английского, так вот мой вопрос: Как мы можем определить высоту и ширину обзора.Вот это имя flakeView.Вот код:

UIImageView* flakeView = [[[UIImageView alloc] initWithImage:flakeImage] autorelease];

// use the random() function to randomize up our flake attributes
int startY = round(random() % 320);

// set the flake start position
flakeView.center = CGPointMake(490, startY);
flakeView.alpha = 1;

// put the flake in our main view
[self.view addSubview:flakeView];

[UIView animateWithDuration:7
                 animations:^{
                     // set the postion where flake will move to
                     flakeView.center = viewToRotate.center;
                 }];

1 Ответ

7 голосов
/ 10 мая 2011
CGRect frame = CGRectMake(xPosition, yPosition, width, height);
flakeView.frame = frame;

Обратите внимание, что xPosition и yPosition - это верхний левый угол, а не центр.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...