开源中国iOS客户端学习——(一)Prefix.pch文件

转载自 http://blog.csdn.net/duxinfeng2010/article/details/8287550

当我们新建一个工程的时候,在Supporting FIles文件下会看到一个以
 -Prefix.pch结尾文件的文件,pch全称是“precompiled
header”,也就是预编译头文件,该文件里存放的工程中一些不常被修改的代码,比如常用的框架头文件,这样做的目的提高编译器编译速度。我们知道当我
们修改一个工程中某个文件代码时候,编译器并不是重新编译所有所有文件,而是编译改动过文件的,假如pch中某个文件修改了,那么pch整个文件里包含的
的其他文件也会重新编译一次,这样就会消耗大量时间,所以它里面添加的文件最好是是很少变动或不变动的头文件或者是预编译的代码片段;

在新建一个工程时,pch后缀文件里代码是

[cpp] view plaincopy

  1. #import <Availability.h>
  2. #ifndef __IPHONE_4_0
  3. #warning "This project uses features only available in iOS SDK 4.0 and later."
  4. #endif
  5. #ifdef __OBJC__
  6. #import <UIKit/UIKit.h>
  7. #import <Foundation/Foundation.h>
  8. #endif

或许你会觉得这预编译代码很少,但是你可以查看一下UIKit.h的定义文件中

[cpp] view plaincopy

  1. //
  2. //  UIKit.h
  3. //  UIKit
  4. //
  5. //  Copyright (c) 2005-2011, Apple Inc. All rights reserved.
  6. //
  7. #import <UIKit/UIKitDefines.h>
  8. #import <UIKit/UIAccelerometer.h>
  9. #import <UIKit/UIAccessibility.h>
  10. #import <UIKit/UIActivityIndicatorView.h>
  11. #import <UIKit/UIAlert.h>
  12. #import <UIKit/UIApplication.h>
  13. #import <UIKit/UIBarButtonItem.h>
  14. #import <UIKit/UIBarItem.h>
  15. #import <UIKit/UIBezierPath.h>
  16. #import <UIKit/UIButton.h>
  17. #import <UIKit/UIColor.h>
  18. #import <UIKit/UIControl.h>
  19. #import <UIKit/UIDataDetectors.h>
  20. #import <UIKit/UIDatePicker.h>
  21. #import <UIKit/UIDevice.h>
  22. #import <UIKit/UIDocument.h>
  23. #import <UIKit/UIDocumentInteractionController.h>
  24. #import <UIKit/UIEvent.h>
  25. #import <UIKit/UIFont.h>
  26. #import <UIKit/UIGeometry.h>
  27. #import <UIKit/UIGestureRecognizer.h>
  28. #import <UIKit/UIGraphics.h>
  29. #import <UIKit/UIImage.h>
  30. #import <UIKit/UIImagePickerController.h>
  31. #import <UIKit/UIImageView.h>
  32. #import <UIKit/UIInterface.h>
  33. #import <UIKit/UILabel.h>
  34. #import <UIKit/UILocalNotification.h>
  35. #import <UIKit/UILocalizedIndexedCollation.h>
  36. #import <UIKit/UILongPressGestureRecognizer.h>
  37. #import <UIKit/UIManagedDocument.h>
  38. #import <UIKit/UIMenuController.h>
  39. #import <UIKit/UINavigationBar.h>
  40. #import <UIKit/UINavigationController.h>
  41. #import <UIKit/UINib.h>
  42. #import <UIKit/UINibDeclarations.h>
  43. #import <UIKit/UINibLoading.h>
  44. #import <UIKit/UIPageControl.h>
  45. #import <UIKit/UIPageViewController.h>
  46. #import <UIKit/UIPanGestureRecognizer.h>
  47. #import <UIKit/UIPasteboard.h>
  48. #import <UIKit/UIPickerView.h>
  49. #import <UIKit/UIPinchGestureRecognizer.h>
  50. #import <UIKit/UIPopoverController.h>
  51. #import <UIKit/UIPopoverBackgroundView.h>
  52. #import <UIKit/UIPrintError.h>
  53. #import <UIKit/UIPrintFormatter.h>
  54. #import <UIKit/UIPrintInfo.h>
  55. #import <UIKit/UIPrintInteractionController.h>
  56. #import <UIKit/UIPrintPageRenderer.h>
  57. #import <UIKit/UIPrintPaper.h>
  58. #import <UIKit/UIProgressView.h>
  59. #import <UIKit/UIReferenceLibraryViewController.h>
  60. #import <UIKit/UIResponder.h>
  61. #import <UIKit/UIRotationGestureRecognizer.h>
  62. #import <UIKit/UIScreen.h>
  63. #import <UIKit/UIScreenMode.h>
  64. #import <UIKit/UIScrollView.h>
  65. #import <UIKit/UISearchBar.h>
  66. #import <UIKit/UISearchDisplayController.h>
  67. #import <UIKit/UISegmentedControl.h>
  68. #import <UIKit/UISlider.h>
  69. #import <UIKit/UISplitViewController.h>
  70. #import <UIKit/UIStepper.h>
  71. #import <UIKit/UIStoryboard.h>
  72. #import <UIKit/UIStoryboardPopoverSegue.h>
  73. #import <UIKit/UIStoryboardSegue.h>
  74. #import <UIKit/UIStringDrawing.h>
  75. #import <UIKit/UISwipeGestureRecognizer.h>
  76. #import <UIKit/UISwitch.h>
  77. #import <UIKit/UITabBar.h>
  78. #import <UIKit/UITabBarController.h>
  79. #import <UIKit/UITabBarItem.h>
  80. #import <UIKit/UITableView.h>
  81. #import <UIKit/UITableViewCell.h>
  82. #import <UIKit/UITableViewController.h>
  83. #import <UIKit/UITapGestureRecognizer.h>
  84. #import <UIKit/UITextField.h>
  85. #import <UIKit/UITextInput.h>
  86. #import <UIKit/UITextInputTraits.h>
  87. #import <UIKit/UITextView.h>
  88. #import <UIKit/UIToolbar.h>
  89. #import <UIKit/UITouch.h>
  90. #import <UIKit/UIVideoEditorController.h>
  91. #import <UIKit/UIView.h>
  92. #import <UIKit/UIViewController.h>
  93. #import <UIKit/UIWebView.h>
  94. #import <UIKit/UIWindow.h>

这些不少了吧,工程每次运行都编译是不是很费时间,这些是苹果公司内部定义的标准头文件,我们不能也没有权限修改这些头文件定义内容,所以,当放到pch文件中会加速编译过程;

再来看看我们开源中国iOS客户端pch文件

[cpp] view plaincopy

  1. //
  2. // Prefix header for all source files of the ‘oschina‘ target in the ‘oschina‘ project
  3. //
  4. #import <Availability.h>
  5. #ifndef __IPHONE_4_0
  6. #warning "This project uses features only available in iOS SDK 4.0 and later."
  7. #endif
  8. #ifdef __OBJC__
  9. #import <UIKit/UIKit.h>
  10. #import <Foundation/Foundation.h>
  11. #import <CoreData/CoreData.h>
  12. #import <QuartzCore/QuartzCore.h>
  13. //添加的预编译
  14. #import "ASIHTTPRequest.h"
  15. #import "ASIFormDataRequest.h"
  16. #import "ASIHTTPRequestDelegate.h"
  17. #import "ASIHTTPRequestConfig.h"
  18. #import "TBXML.h"
  19. #import "TBXML+HTTP.h"
  20. #import "TBXML+Compression.h"
  21. #import "Config.h"
  22. #import "EGORefreshTableHeaderView.h"
  23. #import "DataSingleton.h"
  24. #import "ImgRecord.h"
  25. #import "IconDownloader.h"
  26. #import "MBProgressHUD.h"
  27. #import "GCDiscreetNotificationView.h"
  28. #import "NdUncaughtExceptionHandler.h"
  29. #import "JSNotifier.h"
  30. #import "AFOSCClient.h"
  31. #import "AFHTTPRequestOperation.h"
  32. #import "AFXMLRequestOperation.h"
  33. //api定义
  34. #define api_news_list @"http://www.oschina.net/action/api/news_list"
  35. #define api_news_detail @"http://www.oschina.net/action/api/news_detail"
  36. #define api_post_list @"http://www.oschina.net/action/api/post_list"
  37. #define api_post_detail @"http://www.oschina.net/action/api/post_detail"
  38. #define api_post_pub @"http://www.oschina.net/action/api/post_pub"
  39. #define api_tweet_list @"http://www.oschina.net/action/api/tweet_list"
  40. #define api_tweet_detail @"http://www.oschina.net/action/api/tweet_detail"
  41. #define api_tweet_delete @"http://www.oschina.net/action/api/tweet_delete"
  42. #define api_tweet_pub @"http://www.oschina.net/action/api/tweet_pub"
  43. #define api_active_list @"http://www.oschina.net/action/api/active_list"
  44. #define api_message_list @"http://www.oschina.net/action/api/message_list"
  45. #define api_message_delete @"http://www.oschina.net/action/api/message_delete"
  46. #define api_message_pub @"http://www.oschina.net/action/api/message_pub"
  47. #define api_comment_list @"http://www.oschina.net/action/api/comment_list"
  48. #define api_comment_pub @"http://www.oschina.net/action/api/comment_pub"
  49. #define api_comment_reply @"http://www.oschina.net/action/api/comment_reply"
  50. #define api_comment_delete @"http://www.oschina.net/action/api/comment_delete"
  51. #define api_login_validate @"https://www.oschina.net/action/api/login_validate"
  52. #define api_user_info @"http://www.oschina.net/action/api/user_info"
  53. #define api_user_information @"http://www.oschina.net/action/api/user_information"
  54. #define api_user_updaterelation @"http://www.oschina.net/action/api/user_updaterelation"
  55. #define api_notice_clear @"http://www.oschina.net/action/api/notice_clear"
  56. #define api_software_detail @"http://www.oschina.net/action/api/software_detail"
  57. #define api_blog_detail @"http://www.oschina.net/action/api/blog_detail"
  58. #define api_favorite_list @"http://www.oschina.net/action/api/favorite_list"
  59. #define api_favorite_add @"http://www.oschina.net/action/api/favorite_add"
  60. #define api_favorite_delete @"http://www.oschina.net/action/api/favorite_delete"
  61. #define api_user_notice @"http://www.oschina.net/action/api/user_notice"
  62. #define api_search_list @"http://www.oschina.net/action/api/search_list"
  63. #define api_friends_list @"http://www.oschina.net/action/api/friends_list"
  64. #define api_softwarecatalog_list @"http://www.oschina.net/action/api/softwarecatalog_list"
  65. #define api_software_list @"http://www.oschina.net/action/api/software_list"
  66. #define api_softwaretag_list @"http://www.oschina.net/action/api/softwaretag_list"
  67. #define api_blogcomment_list @"http://www.oschina.net/action/api/blogcomment_list"
  68. #define api_blogcomment_pub @"http://www.oschina.net/action/api/blogcomment_pub"
  69. #define api_my_information @"http://www.oschina.net/action/api/my_information"
  70. #define api_blogcomment_delete @"http://www.oschina.net/action/api/blogcomment_delete"
  71. #define api_userblog_delete @"http://www.oschina.net/action/api/userblog_delete"
  72. #define api_userblog_list @"http://www.oschina.net/action/api/userblog_list"
  73. #define api_blog_list @"http://www.oschina.net/action/api/blog_list"
  74. #define api_userinfo_update @"http://www.oschina.net/action/api/portrait_update"
  75. //宏定义 新闻
  76. #define TweetCellIdentifier @"TweetCellIdentifier"
  77. #define loadMoreIdentifier @"loadMoreIdentifier"
  78. #define NewsCellIdentifier @"NewsCellIdentifier"
  79. #define PostCellIdentifier @"PostCellIdentifier"
  80. #define MsgCellIdentifier @"MsgCellIdentifier"
  81. #define MsgUnitCellIdentifier @"MsgUnitCellIdentifier"
  82. #define ActiveCellIdentifier @"ActiveCellIdentifier"
  83. #define UserActiveCellIdentifier @"UserActiveCellIdentifier"
  84. #define ColorActiveCellIdentifier @"ColorActiveCellIdentifier"
  85. #define RTActiveCellIdentifier @"RTActiveCellIdentifier"
  86. #define ColorUserActiveCellIdentifier @"ColorUserActiveCellIdentifier"
  87. #define ProfielCellIdentifier @"ProfielCellIdentifier"
  88. #define CommentCellIdentifier @"CommentCellIdentifier"
  89. #define NormalCellIdentifier @"NormalCellIdentifier"
  90. #define FavoriteCellIdentifier @"FavoriteCellIdentifier"
  91. #define FriendCellIdentifier @"FriendCellIdentifier"
  92. #define SoftwareCellIdentifier @"SoftwareCellIdentifier"
  93. #define SoftwareCatalogIdentifier @"SoftwareCatalogIdentifier"
  94. #define SettingTableIdentifier @"SettingTableIdentifier"
  95. #define MyInfoCellIdentifier @"MyInfoCellIdentifier"
  96. #define MyPortraitCellIdentifier @"MyPortraitCellIdentifier"
  97. #define loadNext20Tip @"下面 20 项 . . ."
  98. #define loadingTip @"正在加载 . . ."
  99. #define networkError @"网络无连接"
  100. #define noNetworkTip @"网络无连接"
  101. //消息通知固定字符串
  102. #define Notification_DetailCommentCount @"Notification_DetailCommentCount"
  103. #define Notification_NoticeUpdate @"Notification_NoticeUpdate"
  104. #define Notification_TabClick @"Notification_TabClick"
  105. //html头部
  106. #define HTML_Style @"<style>#oschina_title {color: #000000; margin-bottom: 6px; font-weight:bold;}#oschina_title img{vertical-align:middle;margin-right:6px;}#oschina_title a{color:#0D6DA8;}#oschina_outline {color: #707070; font-size: 12px;}#oschina_outline a{color:#0D6DA8;}#oschina_software{color:#808080;font-size:12px}#oschina_body img {max-width: 300px;}#oschina_body {font-size:16px;max-width:300px;line-height:24px;} #oschina_body table{max-width:300px;}#oschina_body pre { font-size:9pt;font-family:Courier New,Arial;border:1px solid #ddd;border-left:5px solid #6CE26C;background:#f6f6f6;padding:5px;}</style>"
  107. #define HTML_Bottom @"<div style=‘margin-bottom:60px‘/>"
  108. #define USERAGENT @"OSChina.NET/iOS/5.0"
  109. #define AppVersion @"1.6.1"
  110. #ifdef DEBUG
  111. #define debugLog(...) NSLog(__VA_ARGS__)
  112. #define debugMethod() NSLog(@"%s", __func__)
  113. #else
  114. #define debugLog(...)
  115. #define debugMethod()
  116. #endif
  117. #endif

我们看到有这样些文件也被添加到里面,可能会想难道这些头文件变化不大吗?

[cpp] view plaincopy

  1. //添加的预编译
  2. #import "ASIHTTPRequest.h"
  3. #import "ASIFormDataRequest.h"
  4. #import "ASIHTTPRequestDelegate.h"
  5. #import "ASIHTTPRequestConfig.h"
  6. #import "TBXML.h"
  7. #import "TBXML+HTTP.h"
  8. #import "TBXML+Compression.h"
  9. #import "Config.h"
  10. #import "EGORefreshTableHeaderView.h"
  11. #import "DataSingleton.h"
  12. #import "ImgRecord.h"
  13. #import "IconDownloader.h"
  14. #import "MBProgressHUD.h"
  15. #import "GCDiscreetNotificationView.h"
  16. #import "NdUncaughtExceptionHandler.h"
  17. #import "JSNotifier.h"
  18. #import "AFOSCClient.h"
  19. #import "AFHTTPRequestOperation.h"
  20. #import "AFXMLRequestOperation.h"


实,这些文件特殊之处在于他们都是第三方类库的头文件,第三方类库将一些对象进行高度封装,留下接口,然后我们根据类库接口直接调用就可以,这些第三方类
库一般都比iOS原生自带的更加简单易用,比如TBXML解析库,比iOS自带的NSXMLPaser解析器速度功能上都会好一些;

还有一些宏定义都是比较常用方式的宏定义,比如定义的开源中国社区的api接口,这些接口变得当然很少了;

然后就剩下最后面的

[cpp] view plaincopy

  1. #ifdef DEBUG
  2. #define debugLog(...) NSLog(__VA_ARGS__)
  3. #define debugMethod() NSLog(@"%s", __func__)
  4. #else
  5. #define debugLog(...)
  6. #define debugMethod()
  7. #endif

工程有Debug
Version和Release Version,Debug
Version是程序开发过程中版本,它包含了所有调试信息,一些常用的NSLog打印日志,在程序调试过程工根据我们设置的调试信息可以看出什么地方出
错,我们在运行运行一个小程序的时候,会不会首先就想到进行断点调试呢,应该是首先想着NSLog一下,看看哪个函数方法没执行,看看是不是哪个数组的值
没取出来。Release
Version是发布版本,不打印NSLog可以加快程序运行速度,减少内存使用。  
但是到一个大工程中,会有很多很多这样的NSLog,在我们工程完美运行的时候,发布Release
版本的时候,难道我们去一行行的注释调NSLog吗?假如工程现在原来基础上发布一个version
1.2版本的,我们在修改程序的时候岂不是还把原来注释给取消,那就很麻烦很麻烦了。

所以,此处用到了宏指令

上段代码的意思就是 用宏指令做一个判断,如果DEBUG为真,则编译#ifdef到#endif宏定义,否则编译器就不编译;

这个DEBUG在哪设置呢,

在 "Target > Build Settings > Preprocessor Macros > Debug" 里有一个"DEBUG=1"。

现在我们来做一个测试:

取一个宏指令放到OSAppDelegate.m的application:didFinishLaunchingWithOptions:方法中,并用同一个NSLog做一个对比;

NSLog(@"%s", __func__);

debugMethod();

首先设置为Debug模式下,Product-->Edit Scheme

跳转到这个界面

当我设置Build Configuration成Debug时,打印效果图

当我设置Build Configuration成Release的,打印时效果图

当Run  Test  Profile  Analyze  Archive的时候,都可以根据需要设置Debug和Release两个模式运行;

所以我们完全可以用一个宏指令来设置是否打印调试信息;

欢迎转载分享,请注明出处http://blog.csdn.net/duxinfeng2010

时间: 2024-10-23 18:22:21

开源中国iOS客户端学习——(一)Prefix.pch文件的相关文章

开源中国iOS客户端学习

开源中国iOS客户端学习 续写前言 <开源中国iOS客户端学习>续写前系列博客    http://blog.csdn.net/column/details/xfzl-kykhd.html 开源中国iOS客户端学习——序 说到这款开源软件就得提到她的娘家了--开源中国社区: 开源中国社区简介:开源中国 www.oschina.net 成立于2008年8月,是目前中国最大的开源技术社区.传播开源的理念,推广开源项目,为 IT 开发者提供了一个发现.使用.并交流开源技术的平台.目前开源中国社区已收

开源中国iOS客户端学习(1)

项目目录简单解析: 1.AFNetwork --- 通用网络库2.GCDiscreetNotificationView --- 顶部弹出并会自动消失的通知栏3.Thread --- 后台线程对象,处理后台发送带图片的动弹4.SoftwareGroup --- 所有软件索引页以及软件分组页5.Friends --- 好友列表页,包括粉丝与关注者6.Search --- 搜索页7.Favorite --- 收藏页8.MBHUD --- 载入提示控件9.FTColor --- 富文本显示控件10.EG

开源中国IOS客户端

自己想看看别人开发的项目,吸收下经验,然后找到开源中国,有些网上的大牛自己也开发出了开源中国的客户端 在网上看到很多网友说,下载下来安装不了之类的东西,在我这里我带个路,希望对那些朋友有些帮助. https://github.com/jimneylee/JLRubyChina-iPhone   开源中国源码地址 界面如下: 很多的朋友会直接点击Download ZIP,然后下载下来,打开,打开后就直接CocoaPods更新运行如下命令行 $ pod install 下载了其他的sdk下来后,以为

iOS客户端学习之AES加密

数据加密在解密在软件开发过程中举足轻重的作用,可能有的公司在加密的时候有自己公司内部一套设计的算法,而在这方面不想浪费太大精力就可以去考虑使用第三方提供的加密算法,如AES加密算法,本篇内容介绍开源中国iOS客户端使用ASE算法加密密码: AES   GitHub 下载地址  https://github.com/Gurpartap/AESCrypt-ObjC 对一个比较大的工程我们可能都不知道某个类库或者方法在哪被使用,但是智能的Xcode给我们提供了一个全局搜索的功能,我们可以在真个工程中来

iOS客户端学习 AES加密和解密

数据加密在解密在软件开发过程中举足轻重的作用,可能有的公司在加密的时候有自己公司内部一套设计的算法,而在这方面不想浪费太大精力就可以去考虑使用第三方提供的加密算法,如AES加密算法,本篇内容介绍开源中国iOS客户端使用ASE算法加密密码: AES   GitHub 下载地址  https://github.com/Gurpartap/AESCrypt-ObjC 对一个比较大的工程我们可能都不知道某个类库或者方法在哪被使用,但是智能的Xcode给我们提供了一个全局搜索的功能,我们可以在真个工程中来

开源中国安卓客户端源码学习(一) 渐变启动界面

开源中国安卓客户端源码学习(一) 准备学习安卓开发, 看到网上有人推荐开源中国安卓客户端的源码, 说里面包含了大部分技术, 于是准备好好研究研究. 特开通此系列博客来记录学习过程. 由于是在学习, 经验不足, 里面肯定有很多不对的地方, 望大家指正. 到这里下载源码包,开发环境为Linux下Eclipse,导入源码后有可能会出现android.webkit.CacheManager找不到的错误, 原因是这个类在4.0以上版本的SDK被删除了, 只要下载4.0版本的SDK使用即可. 由于googl

使用calabash测试开源中国Android客户端

Calabash-android是支持android的UI自动化测试框架,前面已经介绍过<中文Win7下成功安装calabash-android步骤>,这篇博文尝试测试一个真实应用:开源中国客户端.目的是和大家一起学习calabash测试工具. 测试环境与源码准备 先介绍一下oschina.net oschina除了有网站,还有三大平台手机客户端: http://www.oschina.net/app 客户端已经开源! 那么开源可以用来做什么呢? 我正在学用calabash-android,得

ios开发 &lt;AppName&gt;-Prefix.pch文件的用法详解

我们知道,每新建立一个工程,比如说HelloWord,在分类SupportingFiles里都会有一个以工程名开头-Prefix.pch结尾的文件,如HelloWord-Prefix.pch.对于这个文件,很长一段时间里笔者都没觉得它碍事.直到有一天笔者学习NSLog看网上的教程,大家是怎样在最终提交应用的时候,一次性将NSLog语句移除.网上大多转来转去的方法,都是说把如下的语句 #ifdef DEBUG#    define DLog(...) NSLog(__VA_ARGS__)#else

&lt;AppName&gt;-Prefix.pch文件的添加以及用法

iOS8  xcode6中添加pch全局引用文件 前沿:xcode6中去掉了pch,为了一些琐碎的头文件引用,加快了 编译速度! xcode6之前的版本建项目就自动添加了是这样的: xcode6后的版本要自己手动的添加步骤如下: 1)  2) 3) $(SRCROOT)/pchFile.pch 这样就ok了! ----------------------------------------------------------------------------------------------