8000 GitHub - quanzhizu/BFKit: BFKit is a collection of useful classes to develop Apps faster
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

quanzhizu/BFKit

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

BFKit Banner

Build Status Carthage compatible Version Language Platform License


Swift Version โ€ข What does it do โ€ข Language support โ€ข Requirements โ€ข Communication โ€ข Contributing โ€ข Installing and Usage โ€ข Documentation โ€ข Changelog โ€ข Demo โ€ข Todo โ€ข Author โ€ข License


Swift Version

If you are looking for Swift version check it out here: BFKit Swift

What does it do โ“

BFKit is a collection of useful classes to develop Apps faster.

For example you can use every iOS font with just an enum!

It also adds some useful method to some classes like:

BFKit:

Foundation:

UIKit:

Language support ๐Ÿ‡ฎ๐Ÿ‡น

  • English (en)
  • Indonesian (id)
  • Italian (it)
  • Russian (ru)
  • Simplified Chinese (zh-Hans)
  • Traditional Chinese (zh-Hant)
  • Ukrainian (uk)
  • Vietnamese (vi)

Requirements ๐Ÿ“ฑ

  • iOS SDK 7.0 if you copy the Framework files (Source folder)
  • iOS SDK 8.0 if you use it as a Framework
  • Xcode 7.0 or later
  • ARC

Communication ๐Ÿ”ˆ

  • If you need help, use Stack Overflow.
  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, see Contributing section.

Contributing :octocat:

I'd love to see your ideas for improving this library.

The best way to contribute is by submitting a pull request. I'll do my best to respond to you as soon as possible.

Please make sure to follow my general coding style for new features!

Installing and Usage ๐Ÿ’ป

iOS 7 or later compatible

Manual

  • Copy the Source folder to the project
  • Add the following frameworks to the project:
    • UIKit
    • Foundation
    • CoreImage
    • CoreGraphics
    • QuartzCore
    • Accelerate
    • AudioToolbox (if you want to use BFSystemSound class)
    • LocalAuthentication (if you want to use BFTouchID class, and set it as weak if your App runs on iOS 7)
  • Import BFKit with #import "BFKit.h"
  • Enjoy!

CocoaPods

Pro version
  • pod 'BFKit'
  • Import the Framework with import BFKit
  • Enjoy!
Newbie version
  • Create a Podfile in your project directory
  • Write:
    platform :ios, '7.0'
    xcodeproj 'Project.xcodeproj'

    pod 'BFKit'
  • Change "Project" with your real project name
  • Open Terminal, go to project directory and type: pod install
  • Import the Framework with #import <BFKit/BFKit.h>
  • Enjoy!

iOS 8 or later compatible

Manual

  • Open the BFKit folder and build the Framework from the project
  • Import BFKit.framework into your project
  • Add the following frameworks to the project:
    • UIKit
    • Foundation
    • CoreImage
    • CoreGraphics
    • QuartzCore
    • Accelerate
    • AudioToolbox (if you want to use BFSystemSound class)
    • LocalAuthentication (if you want to use BFTouchID class, and set it as weak if your App runs on iOS 7)
  • Import the Framework with import BFKit
  • Enjoy!

Carthage

Pro version
  • github "FabrizioBrancati/BFKit"
  • Import the Framework with import BFKit
  • Enjoy!
Newbie version
  • Create a Cartfile in your project directory
  • Write:
    github "FabrizioBrancati/BFKit"
  • Open Terminal, go to project directory and type: carthage update

  • Include the created Framework in your project

  • Add Build Phase with the following contents:

        /usr/local/bin/carthage copy-frameworks

    and add the paths to the BFKit framework under Input Files

        $(SRCROOT)/Carthage/Build/iOS/BFKit.framework

    This script works around an App Store submission bug triggered by universal binaries and ensures that necessary bitcode-related files are copied when archiving

  • Import the Framework with import BFKit

  • Enjoy!

Documentation ๐Ÿ’ฏ

CocoaDocs - 100% Documented

Changelog ๐Ÿ“‘

To see what has changed in recent version of BFKit, see the CHANGELOG

Demo ๐Ÿ”ง

Open and run the BFKitDemo project in Xcode and see BFKit in action!

Todo โ˜‘๏ธ

  • โž– Create great tests and add Coveralls badge
  • โž– Add support to watchOS, tvOS and MacOS
  • โž– Create a new DEMO App that shows all the functionalities of BFKit
  • โœ”๏ธ Add Carthage support
  • โœ”๏ธ Add to CocoaPods
  • โœ”๏ธ Create a great documentation

Author :neckbeard:

Fabrizio Brancati

Website
Email

License ๐Ÿ“œ

BFKit is available under the MIT license. See the LICENSE file for more info.

About

BFKit is a collection of useful classes to develop Apps faster

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 99.8%
  • Ruby 0.2%
0