Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smashingboxes/buildnumberlabel
Put a build number on it! (iOS)
https://github.com/smashingboxes/buildnumberlabel
Last synced: 7 days ago
JSON representation
Put a build number on it! (iOS)
- Host: GitHub
- URL: https://github.com/smashingboxes/buildnumberlabel
- Owner: smashingboxes
- License: mit
- Created: 2016-01-22T20:12:39.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-29T21:18:37.000Z (over 6 years ago)
- Last Synced: 2024-10-25T16:42:24.796Z (21 days ago)
- Language: Swift
- Size: 11.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Adding a build number label to an app is simple task, but it can get neglected.
This library promotes it from 'simple' to 'dead-simple', so there's no excuse! Now all your builds can have visible build numbers for testers & QA to reference.
Installation:
1. Add `pod 'BuildNumberLabel'` to your Podfile
1. run `pod install`Sammple usage:
import BuildNumberLabel
// if the defaults are ok:
BuildNumberLabel.create().addToView(view)There are some options if you need to customize the appearance and layout:
BuildNumberLabel.create(
font: UIFont(name: "HelveticaNeue-Bold", size: 10),
color: UIColor.lightGrayColor()
).addToView(
view,
vertical: .Top,
verticalPadding: 70.0
)