-1

如果有一种方法可以使用addSubview将 UIImageView 放入另一个视图的特定区域,我会感到很困惑

这就是我的代码当前的外观,我正在考虑如何将图像添加到视图的特定位置,例如左上角的 (0,0)。

这就是我正在做的。

//...
jumpBar = [[JumpBarViewController alloc] initWithNibName:@"JumpBarViewController" bundle:[NSBundle mainBundle]];
            jumpBarContainer = [[UIView alloc] initWithFrame:CGRectMake(0.0, 480.0, (jumpBarHeight + 49.0), 320.0)];
            [jumpBarContainer addSubview:jumpBar.view];
            [self.view insertSubview:jumpBarContainer belowSubview:actionTabBar];  

            // Add jumpBar shade
                switch (jumpBarHeight) {
                    case 103:
                    {
                        NSLog(@"one row");
                        UIImageView *smlShader = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"1-row-top-bg.png"]];
                        [jumpBarContainer addSubview:smlShader]; // how do i add this to the top left of jumBarContainer?
                    }
//...

任何帮助将不胜感激 :)

4

1 回答 1

2

设置 UIImageView 框架:

     UIImageView *smlShader = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"1-row-top-bg.png"]];
     smlShader.frame = CGRectMake(x,y,w,h); //Change the value of the frame
     [jumpBarContainer addSubview:smlShader];
于 2012-06-14T02:01:56.047 回答