ICTKit
Purpose
The Foundation framework defines a base layer of Objective-C classes. In addition to providing a set of useful primitive object classes, it introduces several paradigms that define functionality not covered by the Objective-C language. The Foundation framework is designed with these goals in mind:
Provide a small set of basic utility classes. Make software development easier by introducing consistent conventions for things such as deallocation. Support Unicode strings, object persistence, and object distribution. Provide a level of OS independence, to enhance portability. The Foundation framework includes the root object class, classes representing basic data types such as strings and byte arrays, collection classes for storing other objects, classes representing system information such as dates, and classes representing communication ports. See Cocoa Objective-C Hierarchy for Foundation for a list of those classes that make up the Foundation framework.
The Foundation framework introduces several paradigms to avoid confusion in common situations, and to introduce a level of consistency across class hierarchies. This consistency is done with some standard policies, such as that for object ownership (that is, who is responsible for disposing of objects), and with abstract classes like NSEnumerator. These new paradigms reduce the number of special and exceptional cases in an API and allow you to code more efficiently by reusing the same mechanisms with various kinds of objects.
Harry Tran.
Author:Adding ICTKitto Your Project
CocoaPods
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like ICTKit in your projects.
platform :ios, '8.0'
pod "ICTKit"
Source Files
Alternatively you can directly add the ICTKit.framework folder to your project.
Usage
Import to your project
Objective-C
#import <ICTKit/Kit.h>
Swift
some steps to create this file.
Please import to the Swift Bridging Header file. Folow#import <ICTKit/Kit.h>
Contact
Have a question or an issue about ICTKit? Create an issue!
License
ICTKit is available under the MIT license. See the LICENSE file for more info.
Remark
This is my first iOS plugin project on github, please accept my apologize if any bad coding.