- July 11, 2025
- Mins Read
Light wrapper of UITableViewCell that allows extra customization for tvOS
If you would like to have the same level of customization in uibuttons, you should definitely check out FocusTvButton
TvOSCustomizableTableViewCell allows the customization of UITableViewCells in tvOS, adding extra properties to customize layout attributes which are not customizable on UITableViewCells out of the box.
Custom properties:
Two color, linear gradient properties:
A simple two color, linear gradient can be configured by setting either “background end” color properties. If neither “background end” color properties are set then TvOSCustomizableViewCell will use a solid background color by default.
To integrate TvOSCustomizableViewCell into your Xcode project using CocoaPods, specify it in your Podfile
:
source ‘https://github.com/CocoaPods/Specs.git’
platform :tvos, ‘11.0’
use_frameworks!
target ‘<Your Target Name>’ do
pod ‘TvOSCustomizableTableViewCell’, ‘~> 2.0.0’
end
A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...