xcode как определить высоту и ширину представления

#iphone #uiimageview #height #width

#iPhone #uiimageview #высота #ширина

Вопрос:

Всем привет, я француз, так что извините меня за мой английский, ПОЭТОМУ вот мой вопрос: как мы можем определить высоту и ширину вида. Здесь это называется 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:

 CGRect frame = CGRectMake(xPosition, yPosition, width, height);
flakeView.frame = frame;
  

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