<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>中三A105论坛 - iOS</title>
    <link>https://bbs.z3a105.com/forum.php?mod=forumdisplay&amp;fid=41</link>
    <description>Latest 20 threads of iOS</description>
    <copyright>Copyright(C) 中三A105论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 25 Jun 2026 22:10:12 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://bbs.z3a105.com/static/image/common/logo_88_31.gif</url>
      <title>中三A105论坛</title>
      <link>https://bbs.z3a105.com/</link>
    </image>
    <item>
      <title>iOS项目统计总代码行数</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=315</link>
      <description><![CDATA[打开终端，用cd命令 定位到工程所在的目录，然后调用以下命名即可把每个源代码文件行数及总数统计出来
find . \&quot;(\&quot; -name \&quot;*.m\&quot; -or -name \&quot;*.mm\&quot; -or -name \&quot;*.cpp\&quot; -or -name \&quot;*.h\&quot; -or -name \&quot;*.rss\&quot; \&quot;)\&quot; -print | xargs wc -l
 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Wed, 24 Apr 2019 08:50:08 +0000</pubDate>
    </item>
    <item>
      <title>int,NSInteger,NSUInteger,NSNumber的区别</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=314</link>
      <description><![CDATA[1.当需要使用int类型的变量的时候，可以像写C的程序一样，用int，也可以用NSInteger，但更推荐使用NSInteger，因为这样就不用考虑设备是32位的还是64位的。2.NSUInteger是无符号的，即没有负数,NSInteger是有符号的。3.有人说既然都有了NSInteger等这些基础类型了为什么 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:57:17 +0000</pubDate>
    </item>
    <item>
      <title>CocoaPods 找不到头文件</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=313</link>
      <description><![CDATA[\&quot;${PODS_ROOT}/BuildHeaders\&quot;那试试看使用JONSKit.h,在ViewController.m里引用下。找不到头文件，怎么办？还没设置头文件的目录，在项目的Target的里设置一下：如下图所示，输入${PODS_ROOT}/BuildHeaders 如何这个不好使那就尝试下图上的那个！ 后面选上recursive。
 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:56:24 +0000</pubDate>
    </item>
    <item>
      <title>CocoaPods安装和使用教程</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=312</link>
      <description><![CDATA[Code4App 原创文章。转载请注明出处：http://code4app.com/article/cocoapods-install-usage目录
[*]CocoaPods是什么？
[*]如何下载和安装CocoaPods？
[*]如何使用CocoaPods？
[*]场景1：利用CocoaPods，在项目中导入AFNetworking类库
[*]场景2：如何正确编译运行一个包 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:55:30 +0000</pubDate>
    </item>
    <item>
      <title>iOS第三方库使用</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=310</link>
      <description><![CDATA[越来越多的SVN管理，越来越多的工程文件，我不能总是那么一个一个的把第三方库拖进去，我厌倦了拖拽和配置，我找到了替代方法–CocoaPods英文好的可以直接读一下我参考的网页 http://www.raywenderlich.com/12139/introduction-to-cocoapods不嫌我唠叨 我就自己慢慢敲第 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:52:59 +0000</pubDate>
    </item>
    <item>
      <title>CocoaPods问题</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=309</link>
      <description><![CDATA[1.CocoaPods 版本旧The version of CocoaPods used to generate the lockfile is higher that the one of the current executable. Incompatibility issues might arise.sudo gem update cocoapods2.Operation not permitted - /usr/bin/xcodeprojThis is the solution  ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:51:52 +0000</pubDate>
    </item>
    <item>
      <title>xcode中混用arc和非arc模式</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=308</link>
      <description><![CDATA[Xcode 项目中我们可以使用 ARC 和非 ARC 的混合模式。如果你的项目使用的非 ARC 模式，则为 ARC 模式的代码文件加入 -fobjc-arc 标签。如果你的项目使用的是 ARC 模式，则为非 ARC 模式的代码文件加入 -fno-objc-arc 标签。添加标签的方法：
[*]打开：你的target -&gt; Bui ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:51:06 +0000</pubDate>
    </item>
    <item>
      <title>关于llvm后由lldb和gdb</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=307</link>
      <description><![CDATA[只是知道XCode4.0以后，编译器换成了LLVM 编译器 2.0肯定是因为LLVM更完美，因为人都是喜欢追求更完美的东西。不然也不会轻易更换，search了一篇才了解到：与以前相比，更加强大：
1.LLVM 编译器是下一带开源的编译技术. 完全支持C, Objective-C, 和 C++.
2.LLVM 速度比 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:49:56 +0000</pubDate>
    </item>
    <item>
      <title>@autoreleasepool-内存的分配与释放</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=306</link>
      <description><![CDATA[前言开发过iOS、Mac的朋友应该对“ @autoreleasepool ”不陌生。只要在Xcode里创建一个工程，就能看到下面这样的代码：//iOS programint main(int argc, char * argv[]) {@autoreleasepool {return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate  ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:48:36 +0000</pubDate>
    </item>
    <item>
      <title>IOS Xcode开发中的文件后缀名区别m,mm,cpp,h</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=305</link>
      <description><![CDATA[h ：头文件。头文件包含类，类型，函数和常数的声明。
.m ：源代码文件。这是典型的源代码文件扩展名，可以包含Objective-C和C代码。
.mm ：源代码文件。带有这种扩展名的源代码文件，除了可以包含Objective-C和C代码以外还可以包含C++代码。仅在你的Objective-C代码中 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:47:18 +0000</pubDate>
    </item>
    <item>
      <title>在xcode5中修改整个项目名</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=304</link>
      <description><![CDATA[总会遇到几个项目，在做到一半的时候被要求改项目名，网上找了下相关的资料，大多数是xcode5以前的版本，所以解决好了在这里mark一下，给需要的人。目标为：将项目名XCD4改成xcd5。先上结果图：==》
1.在左侧的导航区域点击两次项目名，两次间隔时间稍微长些，项目名会 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:45:27 +0000</pubDate>
    </item>
    <item>
      <title>Objective-C语言-点语法和变量作用域-@property @synthesize和id</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=303</link>
      <description><![CDATA[一、点语法（一）认识点语法声明一个Person类:
#import @interface Person : NSObject{    int _age;//默认为@protected}- (void)setAgeint)age;- (int)age;@end
View Code

　　　　Person类的实现：

#import \&quot;Person.h\&quot;@implementation Person- (void)setAgeint) ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:44:07 +0000</pubDate>
    </item>
    <item>
      <title>iOS应用程序的两种启动方式</title>
      <link>https://bbs.z3a105.com/forum.php?mod=viewthread&amp;tid=302</link>
      <description><![CDATA[一：对于 window base 的创建步骤：第1步：将创建的xib设置为启动frame。这个可以在 target&gt;&gt;summary&gt;&gt;main interface中设置。这有点相当于将应用的启动入口设置为本xib。第2步：这个启动xib的file owner一定是 UIApplication。但真正的全局AppDelegate是哪个呢？那就需 ...]]></description>
      <category>iOS</category>
      <author>meiw</author>
      <pubDate>Tue, 23 Apr 2019 15:42:30 +0000</pubDate>
    </item>
  </channel>
</rss>