我有一个容器视图,@property (weak, nonatomic) IBOutlet UIView *containerView;
但是当我设置它的框架时它不会移动。这是我正在尝试的方法:
- (void)setFramesForCategories
{
CGRect frame = _containerView.frame;
frame.origin.x = 20;
frame.origin.y = self.view.frame.size.height - 52;
frame.size.width = 236;
frame.size.height = 60 * [[_dataDict objectForKey:@"Key"] count];
_containerView.frame = frame;
}
我知道这是基本的,它以前对我有用,当我移动以编程方式创建的对象时,但现在对我不起作用。