使用Xcode 4.3.2和故事板对Scroll View中的项目进行分组

时间:2012-05-10 18:11:47

标签: ios xcode scrollview

我在视图中的滚动视图内的图像视图中有一个大图像。

View Controller
    View
        Scroll View
            Image View - 1750x3000image
            Button - button1
            Button - button2
            Button - button3
            Button - button4

当我放大和缩小时,按钮不会跟随较大的图像。在滚动时,按钮会跟随图像一起滚动。

我想要完成的是将较大图像的区域设置为按钮,或将按钮悬停在这些区域上。

1 个答案:

答案 0 :(得分:0)

根据我的猜测,你希望你的图像就像一个按钮。只需在图像视图顶部的滚动视图中添加具有清晰颜色背景的UIButton自定义类型(与图像视图相同的帧)。

编辑:尝试添加按钮作为imageview的子视图,而不是直接将其添加到ScrollView?