CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | BSD 3.0 |
ReleasedLast Release | Dec 2014 |
Maintained by Marco Muccinelli.
MUKToolkit is an iOS framework which exposes some useful methods.
I decided not to use Objective-C categories in order not to pollute system classes namespaces and not to conflict with other frameworks you link.
Thanks to jverkoey iOS Framework.
Drag or Add To Files... MUKToolkit.xcodeproj
to your project.
Please remember not to create a copy of files while adding project: you only need a reference to it.
Click on your project and, then, your app target:
Add dependency clicking on + button in Target Dependencies pane and choosing static library target (MUKToolkit
):
Link your project clicking on + button in Link binary with Libraries pane and choosing static library product (libMUKToolkit.a
):
Your project, now, should be like this:
You need to link those framework in order to support MUKToolkit
:
Foundation
UIKit
CoreGraphics
Security
To do so you only need to click on + button in Link binary with Libraries pane and you can choose them.
In order to load every method in MUKToolkit
you need to insert -ObjC
flag to Other Linker Flags
in Build Settings of your project.
You only need to write #import <MUKToolkit/MUKToolkit.h>
when you need headers.
You can also import MUKToolkit
headers in your pch
file:
Build MUKToolkitDocumentation
target in order to install documentation in Xcode.
Requirement: appledoc awesome project.
TODO: online documentation.
Copyright (c) 2012, Marco Muccinelli All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.