AppStoreStyleHorizontalScrollView icon indicating copy to clipboard operation
AppStoreStyleHorizontalScrollView copied to clipboard

App store style horizontal scroll view

Results 14 AppStoreStyleHorizontalScrollView issues
Sort by recently updated
recently updated
newest added

Need smooth work, like natural App Store horizontal scroll

let horizontalScrollView = ASHorizontalScrollView(frame:CGRect(x: 0, y: 0, width: timesView.frame.size.width, height: 50)) timeButtonsArr.removeAll() horizontalScrollView.removeAllItems() ->> **Not Working** timesView.addSubview(horizontalScrollView) for _ in 1...3{ let button = UIButton(frame: CGRect.zero) button.backgroundColor = UIColor.blue horizontalScrollView.addItem(button)...

`import UIKit import ASHorizontalScrollView class ViewController: UIViewController { @IBOutlet weak var scrollView: ASHorizontalScrollView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a...

I try to customize my views inside horizontalScrollView, but the item only appear on once, not completely iterate. Look like this : ![screen shot 2017-04-03 at 4 20 30 pm](https://cloud.githubusercontent.com/assets/11085087/24603060/8a0204e4-1889-11e7-8b32-aedb7058702d.png)...

Hey, we love this library! We are having a bit of difficulty right now though. We have a horizontal scrollview in our view controller. When we add test views, simply...

After I updated the pod to 1.5 and after that i am not able to use two properties miniMarginPxBetweenItems and miniAppearPxOfLastItem. What version I should use, i am currently working...

How to use in the ScrollView? `let horizontalScrollView:ASHorizontalScrollView = ASHorizontalScrollView(frame:CGRect(x: 0, y: Y, width:ScreenWidth, height: 50)) //for iPhone 5s and lower versions in portrait horizontalScrollView.marginSettings_320 = MarginSettings(leftMargin: 10, miniMarginBetweenItems: 5,...

I want to add multiple UIView items with variable sized widths and same sized heights to ASHorizontalScrollView. I briefly looked at the ASHorizontalScrollView code and there were many references to...