iphone - Disabling vertical scrolling in UIScrollView -
there option in ib uncheck vertical scrolling on scrollview, doesnt seem work.
how can scrollview set scroll horizontally, , not vertically in code rather ib?
try setting contentsize's height scrollview's height. vertical scroll should disabled because there nothing scroll vertically.
scrollview.contentsize = cgsizemake(scrollview.contentsize.width,scrollview.frame.size.height);
Comments
Post a Comment