У меня есть UIView, на котором я загружаю свое изображение как вспомогательное представление.Изображение показывается, когда я не устанавливаю точку привязки, но всякий раз, когда я устанавливаю точку привязки, изображение не отображается. Я также добавил работу с рамкой QUARTZCore.
Я добавляю свой код ниже
CGRect apprect=CGRectMake(0, 0, 1024, 768);
UIView *containerView = [[UIView alloc] initWithFrame:apprect1];
containerView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:containerView];
handleView1= [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"large.gif"]];
[handleView1 setAlpha:1];
//[handleView1 setFrame:CGRectMake(390, 172.00, 56.00, 316.00)];
handleView1.userInteractionEnabled = YES;
handleView1.layer.anchorPoint=CGPointMake(490.0, 172.0);
[containerView addSubview:handleView1];