Loading repository data…
Loading repository data…
FabrizioBrancati / repository
BFKit is a collection of useful classes and categories to develop Apps faster.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
If you are looking for Swift version check it out here: BFKit Swift
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:
See CONTRIBUTING.md file.
#import "BFKit.h"pod 'BFKit'import BFKitCreate 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!
import BFKitgithub "FabrizioBrancati/BFKit"import BFKitCreate 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
Add the paths to the Queuer framework under Input Files
$(SRCROOT)/Carthage/Build/iOS/BFKit.framework
Add the paths to the copied frameworks to the Output Files
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/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
(Optional) Add Build Phase with the following contents
/usr/local/bin/carthage outdated --xcode-warnings
To automatically warn you when one of your dependencies is out of date
Import the Framework with import BFKit
Enjoy!
To see what has changed in recent version of BFKit, see the CHANGELOG
Open and run the BFKitDemo project in Xcode and see BFKit in action!
Fabrizio Brancati
BFKit is available under the MIT license. See the LICENSE file for more info.