Popularity
2.9
Stable
Activity
0.0
Stable
152
4
8

Programming language: Swift
License: MIT License
Tags: UI     Activity Indicator    

JDBreaksLoading alternatives and similar libraries

Based on the "Activity Indicator" category.
Alternatively, view JDBreaksLoading alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of JDBreaksLoading or a related project?

Add another 'Activity Indicator' Library

README

JDBreaksLoading

Alt text Alt text Alt text Alt text


Introduction

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.

[Alt text](/../master/Readme_img/JDBreaksLoading.gif?raw=true "")

Usage

To add JDBreaksLoading to your view, just give it a frame and addSubview.

  let jdbreaksLoading:JDBreaksLoading = JDBreaksLoading(frame: frame)
  self.view.addSubview(jdbreaksLoading)

Installation

CocoaPods

 platform :ios, '8.0'
 use_frameworks!
 pod 'JDBreaksLoading'

Game Configuration

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)

Meta

JamesDouble – [email protected]

Distributed under the MIT license. See LICENSE for more information.

https://github.com/jamesdouble/JDBreaksLoading


*Note that all licence references and agreements mentioned in the JDBreaksLoading README section above are relevant to that project's source code only.