Hello! I have a UIView and I cannot change its position (coordinates). I try this: _playerMapView.frame = CGRectMake(15, 15, 50, 50);
I need this in order to change the location of a UIView with animation. I try it here and it doesn't work:
[UIView animateWithDuration:5.0 animations:^{ _playerMapView.frame = CGRectMake(15, 15, 50, 50); }]; Please help me make a position change with animation