1、在XCode中新建静态库工程:DDLogLib。

2、添加对外暴露接口的头文件DDLogLibHeader.h

3、命令行进入DDLogLib目录,运行pod init,并修改Podfile

4、运行pod install,并打开DDLogLib.xcworkspace。

5、运行pod spec create DDLogLib,创建DDLogLib.podspec文件,并编辑。

#  Be sure to run `pod spec lint DDLogLib.podspec' to ensure this is a

#  valid spec and to remove all comments including this before submitting the spec.

#

#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html

#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/

#

Pod::Spec.new do |s|

# ―――  Spec Metadata  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  These will help people to find your library, and whilst it

#  can feel like a chore to fill in it's definitely to your advantage. The

#  summary should be tweet-length, and the description more in depth.

#

s.name         = "DDLogLib"

s.version      = "0.0.1"

s.summary      = "A short description of DDLogLib."

s.description  = <<-DESC

A longer description of DDLogLib in Markdown format.

* Think: Why did you write this? What is the focus? What does it do?

* CocoaPods will be using this to generate tags, and improve search results.

* Try to keep it short, snappy and to the point.

* Finally, don't worry about the indent, CocoaPods strips it!

DESC

s.homepage     = "http://EXAMPLE/DDLogLib"

# s.screenshots  = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"

# ―――  Spec License  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  Licensing your code is important. See http://choosealicense.com for more info.

#  CocoaPods will detect a license file if there is a named LICENSE*

#  Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.

#

s.license      = "MIT (example)"

# s.license      = { :type => "MIT", :file => "FILE_LICENSE" }

# ――― Author Metadata  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  Specify the authors of the library, with email addresses. Email addresses

#  of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also

#  accepts just a name if you'd rather not provide an email address.

#

#  Specify a social_media_url where others can refer to, for example a twitter

#  profile URL.

#

s.author             = { "hu5675" => "hu5675@126.com" }

# Or just: s.author    = "hu5675"

# s.authors            = { "hu5675" => "hu5675@126.com" }

# s.social_media_url   = "http://twitter.com/hu5675"

# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  If this Pod runs only on iOS or OS X, then specify the platform and

#  the deployment target. You can optionally include the target after the platform.

#

# s.platform     = :ios

# s.platform     = :ios, "5.0"

#  When using multiple platforms

# s.ios.deployment_target = "5.0"

# s.osx.deployment_target = "10.7"

# s.watchos.deployment_target = "2.0"

# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  Specify the location from where the source should be retrieved.

#  Supports git, hg, bzr, svn and HTTP.

#

s.source       = { :git => "http://EXAMPLE/DDLogLib.git", :tag => "0.0.1" }

# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  CocoaPods is smart about how it includes source code. For source files

#  giving a folder will include any swift, h, m, mm, c & cpp files.

#  For header files it will include any header in the folder.

#  Not including the public_header_files will make all headers public.

#

s.source_files  = "DDLogLib", "DDLogLib/**/*.{h,m}"

s.exclude_files = "DDLogLib/Exclude"

s.public_header_files = "DDLogLib/**/*.h"

# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  A list of resources included with the Pod. These are copied into the

#  target bundle with a build phase script. Anything else will be cleaned.

#  You can preserve files from being cleaned, please don't preserve

#  non-essential files like tests, examples and documentation.

#

# s.resource  = "icon.png"

s.resources = "DDLogLib/Resources/*.png"

# s.preserve_paths = "FilesToSave", "MoreFilesToSave"

# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  Link your library with frameworks, or libraries. Libraries do not include

#  the lib prefix of their name.

#

 s.framework  = "SystemConfiguration"

# s.frameworks = "SomeFramework", "AnotherFramework"

# s.library   = "iconv"

# s.libraries = "iconv", "xml2"

# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

#

#  If your library depends on compiler flags you can set them in the xcconfig hash

#  where they will only apply to your library. If you depend on other Podspecs

#  you can include multiple dependencies to ensure it works.

# s.requires_arc = true

# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }

s.dependency "CocoaLumberjack"

  #s.dependency "other lib"

6、新建工程DDLogLibAPP,与DDLogLib保持在同一目录,命令行进入DDLogLibAPP,运行pod init,并编辑。

# Uncomment this line to define a global platform for your project

# platform :ios, '6.0'

target 'DDLogLibAPP' do

pod 'DDLogLib', :path => '../DDLogLib'

end

target 'DDLogLibAPPTests' do

end

target 'DDLogLibAPPUITests' do

end

7、运行pod install,并打开DDLogLibAPP.xcworkspace编译。

8、在DDLogLib实现printABC方法。

DDLogLib.m

#import "DDLogLib.h"

#import "DDLog.h"

#import "DDFileLogger.h"

#import "DDTTYLogger.h"

static int ddLogLevel = LOG_LEVEL_INFO;

@implementation DDLogLib

- (void)printABC{

NSLog(@"ABC");

DDLogFileManagerDefault *logFileManager = [[DDLogFileManagerDefault alloc] init];

DDFileLogger* _fileLogger = [[DDFileLogger alloc] initWithLogFileManager:logFileManager];

_fileLogger.rollingFrequency = 60 * 60 * 24; // 24 hour rolling

_fileLogger.logFileManager.maximumNumberOfLogFiles = 7; // a weeks worth

//#ifdef DEBUG

[DDLog addLogger:[DDTTYLogger sharedInstance]];// this is log to xcode window.

//#else

[DDLog addLogger:_fileLogger];

//#endif

DDLogInfo(@"DDLog ABC");

}

@end

DDLogLib.h

#import <Foundation/Foundation.h>

@interface DDLogLib : NSObject

- (void)printABC;

@end

9、在DDLogLibAPP中调用。

#import "AppDelegate.h"

#import <DDLogLib/DDLogLib.h>

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

DDLogLib* logLib = [[DDLogLib alloc] init];

[logLib printABC];

return YES;

}

10、运行DDLogLibAPP,一切正常。

11、在DDLogLibAPP中直接使用DDLog。

#import "AppDelegate.h"

#import <DDLogLib/DDLogLib.h>

#import <DDLog.h>

#import <DDFileLogger.h>

#import <DDTTYLogger.h>

static int ddLogLevel = LOG_LEVEL_INFO;

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

// Override point for customization after application launch.

//app 通过静态库调用

// DDLogLib* logLib = [[DDLogLib alloc] init];

// [logLib printABC];

//app 直接调用

DDLogFileManagerDefault *logFileManager = [[DDLogFileManagerDefault alloc] init];

DDFileLogger* _fileLogger = [[DDFileLogger alloc] initWithLogFileManager:logFileManager];

_fileLogger.rollingFrequency = 60 * 60 * 24; // 24 hour rolling

_fileLogger.logFileManager.maximumNumberOfLogFiles = 7; // a weeks worth

//#ifdef DEBUG

[DDLog addLogger:[DDTTYLogger sharedInstance]];// this is log to xcode window.

//#else

[DDLog addLogger:_fileLogger];

//#endif

DDLogInfo(@"application ABC");

return YES;

}

12、运行正常打印。

iOS在Cocoa Touch Static Library使用CocoaPods的更多相关文章

  1. ios中静态库的创建和使用、制作通用静态库(Cocoa Touch Static Library)

    创建静态库可能出于以下几个理由: 1.你想将工具类代码或者第三方插件快捷的分享给其他人而无需拷贝大量文件.2.你想让一些通用代码处于自己的掌控之下,以便于修复和升级.3.你想将库共享给其他人,但不想让 ...

  2. 使用Xcode 5创建Cocoa Touch Static Library(静态库)

    转自:http://blog.csdn.net/jymn_chen/article/details/21036035 首先科普一下静态库的相关知识: 程序编译一般需经预处理.编译.汇编和链接几个步骤. ...

  3. iOS制作Static Library(静态库),实现多工程的连编

    在iOS开发中,我们会发现一些偏底层或基础代码是直接可以复用的,当我们换一个项目,改变的只需要是偏上层的业务逻辑代码,所以我们可以把这部分基础代码制作为一个静态库static library,并不断扩 ...

  4. iOS 元件组件-创建静态库static library

    概述 在项目开发的过程中,经常使用静态库文件.例如两个公司之间业务交流,不可能把源代码都发送给另一个公司,这时候将私密内容打包成静态库,别人只能调用接口,而不能知道其中实现的细节. 库是一些没有mai ...

  5. Cocoa Touch事件处理流程--响应者链

    Cocoa Touch事件处理流程--响应者链 作者:wangzz 原文地址:http://blog.csdn.net/wzzvictory/article/details/9264335 转载请注明 ...

  6. Cocoa Touch(一)开发基础:Xcode概念、目录结构、设计模式、代码风格

    Xcode相关概念: 概念:project 指一个项目,该项目会负责管理软件产品的全部源代码文件.全部资源文件.相关配置,一个Project可以包含多个Target. 概念:target 一个targ ...

  7. Swift—Cocoa Touch设计模式-备

    目标(Target)与动作(Action)是iOS和OS X应用开发的中事件处理机制.   问题提出 如图所示是一个ButtonLabelSample案例设计原型图,其中包含一个标签和一个按钮,当点击 ...

  8. UI - Cocoa Touch框架

    Cocoa Touch 层 Cocoa Touch层包括创建 iOS应用程序所需的关键框架. 上至实现应用程序可视界面,下至与高级系统服务交互.都须要该层技术提供底层基础.在开发应用程序的时候.请尽可 ...

  9. iOS 快捷下载和安装并使用CocoaPods

    CocoaPods是什么? 当你开发iOS应用时,会经常使用到很多第三方开源类库,比如JSONKit,AFNetWorking等等.可能某个类库又用到其他类库,所以要使用它,手动一个个去下载所需类库十 ...

随机推荐

  1. Unity3d 读取网络xml

    Unity3d 读取网络xml Unity3d 读取网络xml,这个xml文件需要不包含BOM信息,可以用UltraEdit打开xml文件,并且另存为的时候,选择不包含BOM的utf-8格式存储!

  2. ibatis报错

    关键词:org.springframework.dao.DataIntegrityViolationException 在程序中进行数据库插入操作时报错如下: 未知异常:org.springframe ...

  3. 有趣的TWinControl.RecreateWnd,并分析在哪些场合使用

    CM_RECREATEWND = CM_BASE + 51; // TWinControl里有对应函数procedure CMRecreateWnd(var Message: TMessage); m ...

  4. 23个经典JDK设计模式(转)

    下面是JDK中有关23个经典设计模式的示例: Structural(结构模式) Adapter: 把一个接口或是类变成另外一种. o    ● java.util.Arrays#asList() o  ...

  5. Java中的移位操作符

    记住所有的移动位数,针对的都是补码来讲的,所以要先将十进制整数转换成补码后,然后再来进行移位操作 移位操作 还要注意类型的约束条件,例如int,移动范围是0-31位,所以看补码只能看最后五位,这才是有 ...

  6. oralce 仅配置精简客户端 连接plsql ( 版本需一直,要不都是32要不是都是64)

    1.Oracle服务器已经安装完成,版本10.2.0. 2.访问www.oracle.com,下载Oracle精简客户端. 下载页面地址:http://www.oracle.com/technetwo ...

  7. open和fopen的区别(转)

    转载自:http://www.cnblogs.com/joeblackzqq/archive/2011/04/11/2013010.html open和fopen的区别: 1.缓冲文件系统缓 冲文件系 ...

  8. TCP/IP学习(四)TCP缓冲区大小及限制(转)

    链接来自:http://blog.csdn.net/ysu108/article/details/7764461 这个问题在前面有的部分已经涉及,这里在重新总结下.主要参考UNIX网络编程. (1)数 ...

  9. 使用vs2010编译 Python \ SIP \ PyQt4

    (1)先使用vs2010编译 Python http://www.cnblogs.com/fortwo/archive/2013/04/16/3023871.html 注意,若编译的为debug版的P ...

  10. VirtualBox扩展Ubuntu磁盘空间

    有时候我们在使用virtualBox虚拟机时,创建虚拟机时并没有考虑到所占用硬盘大小,后来可能磁盘空间不够用了. 以下方法可以帮你扩展虚拟机的存储空间(以下Ubuntu为例). 1. 在宿主机器进入V ...