Reusable
Reusable copied to clipboard
A Swift mixin for reusing views easily and in a type-safe way (UITableViewCells, UICollectionViewCells, custom UIViews, ViewControllers, Storyboards…)
Different namespace but duplicate reuseIdentifier Found a not very important issue, when two internal class names are the same, the`reuseIdentifier ` is also the same. If you use `String(reflecting:)`, you...
In Package.swift, Swift tools version update too high, lower version build failed
Hi I would like to add a possibility for `NibLoadable` views to be automatically loaded when referenced from another XIB or Storyboard. The current approach in _Reusable_ is to only...
# Better support for Swift Package Manager through a new `Bundled` protocol. > ✍️ A few of the protocols' (i.e. `StoryboardBased`, `NibLoadable` and `NibOwnerLoadable`) default implementations attempt to load resources...
FYI, receiving this warning using Xcode 12 Beta 6 and SPM Xcode version: Xcode 12 beta 6 Reusable 4.1.1 > The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but...
This library is obviously concentrated on `UITableView` and `UICollectionView` support but `MKMapView` has a lot of the same concepts: registering annotations and dequeuing them. I currently use a simple extension...
Hi, First of all thank you very much for such a useful pod! I used to do this manually but now having it on a pod is definitely more reliable...
on trying below getting erros `class ParentCell: UITableViewCell, Reusable {} class Child1Cell: ParentCell {} class Child2Cell: ParentCell {} func cellType(for indexPath: NSIndexPath) -> ParentCell.Type { return indexPath.row.isMultiple(of: 2) ? Child1Cell.self...