Reusable icon indicating copy to clipboard operation
Reusable copied to clipboard

A Swift mixin for reusing views easily and in a type-safe way (UITableViewCells, UICollectionViewCells, custom UIViews, ViewControllers, Storyboards…)

Results 23 Reusable issues
Sort by recently updated
recently updated
newest added

Hello, As we approach the upcoming spring and the anticipated implementation of the [Privacy Manifest](https://developer.apple.com/support/third-party-SDK-requirements/) by Apple, it's crucial to ensure that your SDK fully complies with Apple's requirements. Does...

From your readme: ``` final class MyCustomWidget: UIView, NibOwnerLoadable { … required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) self.loadNibContent() } } ``` The problem is I loose a link to...

Bumps [activesupport](https://github.com/rails/rails) from 6.1.4.1 to 6.1.7.3. Release notes Sourced from activesupport's releases. v6.1.7.3 Active Support Implement SafeBuffer#bytesplice [CVE-2023-28120] Active Model No changes. Active Record No changes. Action View Ignore certain...

dependencies

## Summary ## Code to reproduce ## iOS version ## Installation method ## SDK version ## Other information __Originally posted by @vecsdom in https://github.com/stripe/stripe-ios/issues/1962__

Sure, go ahead! Le ven. 10 sept. 2021 à 17:35, John Arnokouros ***@***.***> a écrit : > Hello there @AliSoftware > > I'm getting the warning below after I update...

I'm trying to use the NibReusable for the HeaderFooterView for a TableView but i'm getting a warning in console: `[TableView] Changing the background color of UITableViewHeaderFooterView is not supported. Use...

Bumps [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) from 1.5.1 to 1.6.3. Release notes Sourced from cocoapods-downloader's releases. 1.6.3 Enhancements None. Bug Fixes None. 1.6.2 Enhancements None. Bug Fixes None. 1.6.1 Enhancements None. Bug Fixes None....

dependencies

### Old Style ```swift import UIKit class MyCollectionViewLayout: UICollectionViewCompositionalLayout { required init?(coder: NSCoder) { super.init { (section, layoutEnvironment) -> NSCollectionLayoutSection? in /* code */ } let nib: UINib = .init(nibName:...

I just starting using NibReusable for a xib inside a SPM package. after a little trial and error, I realized that the nib's `Bundle` had to be `Bundle.module`, not the...

We implemented auto-Registration of tableViewCell types. This was done such that it is an optional, non-breaking change. The features is disabled by default, although that could be changed without breaking...