UIKit (not to be confused with the front-end framework GetUIKit) is the object-oriented framework that is responsible for most of the iOS user interface.
I'm writing a custom UICollectionViewFlowLayout and I've noticed that initialLayoutAttributesForAppearingItemAtIndexPath: and initialLayoutAttributesForAppearingDecorationElementOfKind:atIndexPath: will be called for all sections when …
objective-c ios6 uikit uicollectionview uicollectionviewlayoutI have a UITableView with some cell's that containt UISwitches: UISwitch* actSwitch = (UISwitch*)[cell viewWithTag: SWITCH_TAG]; [actSwitch addTarget: self …
iphone objective-c animation uikit uiswitchAccording to the UIKit diff document, in ios9/Swift 2 var text: String! has become var text: String? According to the …
ios swift uitextfield uikit swift2I am receiving this error. I have no clue as to why it would be called, and Google didn't really …
iphone objective-c uikit uiwindowI'm using the UIStackView with the following configuration: let contentView = UIStackView() contentView.distribution = .EqualSpacing contentView.alignment = .Center contentView.spacing = horizontalSpacing …
ios objective-c swift uikit uistackviewI'm getting a strange crash in my UICollectionView. The crashing UICollectionView is embedded in an UICollectionView cell of another UICollectionView. …
ios objective-c uikit uicollectionview exc-bad-access