Address:http://www.outofcore.com/2011/07/ios-development-proper-use-of-initwithnibnamebundle-affects-uitableviewcontroller/ I think this post will be useful to someone new to the iOS development. One of the most important and commonly used classes in…
很多朋友如果是初学iOS开发,可能会被其中的几个加载方法给搞得晕头转向的,但是这几个方法又是作为iOS程序员必须要我们掌握的方法,下面我将对这几个方法做一下分析和对比,看看能不能增加大家对几个方法的理解和使用. 一.初始化-加载了什么 //加载带有xib的控制器 -(instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil; //(控制器的View为空的时候调用,帮控制器加载Vi…
initWithNibName:bundle 定义:is a message sent to a view (or window) controller in order to create the controller; thus, before the nib is loaded; awakeFromNib 定义:is a message sent to every object in a nib after all of its outlets are hooked up; thus, a…
iOS Development Sites   学习iOS开发有一段时间了,虽然还处于迷茫期,但相比以前的小白痴状态,现在还是蛮有改观的.期间接触了一些很好的网站和博客,现在摘录下来,就当建个索引,没事的时候来喝杯茶,学点技术,提高下自己. 1.iOS的麦加圣地  iOS Dev Center 2.CS193p,视频学习的首选教程  CS193p iPhone Application Development 3.英文学习网站   Google (有问题,找谷歌)   Github (源码,直观且…
Setup iOS Development Environment Install XCode and check-out source code from SVN XCode Please find document from Apple on how to install XCode. Check-out Source Code In XCode, Use menu "Source Control" -> "Check-out" to checkout s…
这篇教程的主要目的是解释怎么样在你的iOS工程中创建并使用一个SDK,俗称.a文件. 环境:xcode 9.0 创建一个静态库工程 打开Xcode,点击File\New\Project, 选择iOS\Framework and Library\Cocoa Touch Static Library新建一个静态库工程. 将工程命名为SDKTest,然后将工程保存到一个空目录下. 当创建静态库工程时,Xcode会自动添加.h和.m. 你不需要实现文件,因此右键单击SDKTest.m选择delete,将…
bundle也可以称之为包(package). 它在iOS和OS X中实际为一个文件夹但却当成单独的文件来对待. 每一个app都有一个bundle,并且你可以通过在xxx.app图标上右击鼠标然后选择"查看包内容"(Show Package Contents)来进入到bundle文件夹的内部.…
http://zhidao.baidu.com/link?url=T9od33JuA7jjxzfyV-wOjuVLSNUaqpc9aoCu2HjfYfHBuRLW1CNDii0Bh9uvG6h-GeJgouy7OkX2b8fzEqd1Mik_em7sPefZ1EC9FPUzOYm1. Certification(证书)证书是对电脑开发资格的认证,每个开发者帐号有一套,分为两种:1) Developer Certification(开发证书)安装在电脑上提供权限:开发人员通过设备进行真机测试.可以…
关注了关东升老师在博客园的iOS开发博客. 在使用能力课堂观看智捷课堂的iOS8开发视频教程.观看到Part1 课时3 Xcode中的iOS工程模板…
先导入#import <objc/runtime.h>头文件 使用runtime获取设备上的所有app的bundle id // Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace"); // NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspac…