- July 26, 2025
- Mins Read
JDBreaksLoading Based on simple UIView and SpriteKit.
You can easily start up a little breaking game by one line.
By the way, don’t make user wait too long to play the game~
Thanks for using.
To add JDBreaksLoading to your view, just give it a frame and addSubview.
let jdbreaksLoading:JDBreaksLoading = JDBreaksLoading(frame: frame)
self.view.addSubview(jdbreaksLoading)
CocoaPods
platform :ios, ‘8.0’
use_frameworks!
pod ‘JDBreaksLoading’
The default [ Ball, Block , Paddle -> All white, Block count: 3 ]
If you want to chagnge some game setting (color, block…etc).
You will need to set ‘JDBreaksGameConfiguration’
let config:JDBreaksGameConfiguration = JDBreaksGameConfiguration(paddle_color: UIColor.white, ball_color: UIColor.white, block_color: UIColor.white, blocks_count: 3)
let jd:JDBreaksLoading = JDBreaksLoading(frame: frame, configuration: config)
self.view.addSubview(jd)
NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. đ» Installation đŠ Swift Package Manager Using Swift Package Manager, add ...
An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...
With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...
This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...