You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
}
Give me a solution... plz.
Result of call to 'removeAllItems()' is unused
The text was updated successfully, but these errors were encountered:
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)
}
Give me a solution... plz.
Result of call to 'removeAllItems()' is unused
The text was updated successfully, but these errors were encountered: