- 浏览: 904266 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (466)
- iPhone, iOS , Objective-c (155)
- 数据库 (20)
- 设计模式 (5)
- 第三方包管理,cocoapod (2)
- 版本管理, SVN, Subversion, Git (1)
- Google, Android, Java (14)
- Wordpress (1)
- 职业素养 (3)
- 版本管理,git (3)
- 前端小技巧 (2)
- flash (1)
- javascript (5)
- Ruby (0)
- 编程语言 (1)
- 网络常识 (1)
- 找到生活好感觉 (5)
- 产品经理 (1)
- markdown (1)
- 云服务器 (1)
- iPhone (116)
- iOS (116)
- Objective-c (116)
- 学习技巧 (2)
- Google (5)
- Android (6)
- Java (21)
- python (1)
- sqlite (3)
- node.js (2)
- mongodb (2)
- 学习技巧,阅读 (2)
- 软件测试 (3)
- 架构设计 (2)
- 设计 (1)
- Spring framework (3)
- junit (1)
- Linux (2)
- 软件 (1)
- Struts2 (1)
- 版本管理 (3)
- SVN (3)
- Subversion (3)
- Git (3)
- mysql (5)
- quartz (1)
- 无关技术 (1)
- 前端 (1)
- Redis (1)
- 产品管理 (0)
- 计算机常识 (1)
- 计算机科学 (0)
- swift (1)
- 服务器 (2)
- 搜索 (1)
- Scala (1)
- J2EE (1)
- maven (1)
- 前端css (1)
- 英语 (1)
- 消息队列 (1)
- kafka (0)
- apache kafka (4)
- netbeans (1)
- IDE (2)
- 歌词 (1)
- 过滤器实现 (1)
- linux vim vi (1)
- jmeter (1)
- springcloud (1)
最新评论
-
hujingnemo:
不知道为什么打不开
CHM如何改编字体大小 -
weiboyuan:
求答案 weiboyuanios@163.com
iOS软件工程师面试题(高级) -
xueji5368:
这个现在已经广泛使用了嘛!
RoboGuice入门 -
Yao__Shun__Yu:
...
CHM如何改编字体大小 -
353144886:
非常之详细 美女求认识
sqlite数据类型 datetime处理
Assuming you have storyboard, go to storyboard and give your VC an identifier (inspector), then do:
Assuming you have a xib file you want to do:
从xib中加载UIview
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil]; UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"IDENTIFIER"]; [self.navigationController pushViewController:vc animated:YES];
Assuming you have a xib file you want to do:
UIViewController *vc = [[UIViewController alloc] initWithNibName:@"NIBNAME" bundle:nil]; [self.navigationController pushViewController:vc animated:YES]; Without a xib file: UIViewController *vc = [[UIViewController alloc] init]; [self.navigationController pushViewController:vc animated:YES];
从xib中加载UIview
NSArray *niblets = [[NSBundle mainBundle] loadNibNamed:@"sample" owner:self options:NULL]; for (id theObject in niblets) { if ([theObject isKindOfClass:[UIViewController class]]) [self.navigationController pushViewController:theObject animated:YES]; } 或者[niblets objectindex:0]
发表评论
-
UIImage变为NSData并进行压缩
2014-05-19 20:23 1928//sdk中提供了方法可以直接调用 UIImage *im ... -
update cocapods
2014-05-17 22:27 800早上更新cocoapod依赖库,发现更新到32.1版本,早先的 ... -
iOS发送短信息代码实例
2014-05-16 18:15 2686#import <MessageUI/Message ... -
DISPATCH TIMER
2014-05-14 16:12 729/* __block void (^callback) ... -
UITextField左边显示图片
2014-05-13 18:08 1170The overlay view displayed on t ... -
iOS调用系统打电话,发短信功能
2014-05-11 15:48 2084先介绍一种最简单的方法: 调用打电话功能 [[UIAppl ... -
iOS面试题
2014-05-09 16:10 10771.写一下UIButton与UITableView的层级结构 ... -
socket二进制报文
2014-05-09 15:18 1300里面有帧头 字符串UTF-8 中间用0隔开 又一个字符串 ... -
将网站添加到桌面的方法
2014-05-08 14:25 1661<link href="http://www. ... -
iPhone通讯录联系人操作大全
2014-05-07 10:29 14591.需要引入AddressBook.framework框架 2 ... -
sqlite获取最新插入的rowid
2014-05-07 09:59 1523除了 last_insert_rowid select max ... -
号码归属地查询,拨打电话
2014-05-06 15:07 845在程序内调用拨打电话的方法,[[UIApplication s ... -
iOS时间合并
2014-04-28 17:55 1093合并同一时间的课程,同一时间可能有多个课程,比如13:30-1 ... -
vCard通讯录格式说明
2014-04-28 16:47 2556原帖:http://freesoftman.iteye.com ... -
UISearchBar背景色全套解决方案
2014-04-25 09:36 7443os系统升级到7.1后,原来在7.0下显示正常的UISearc ... -
升级XCode5.1.1遇到的奇葩问题NSString,NSObjectRuntime.h报错,Foundation找不到
2014-04-24 11:19 896升级XCode5.1.1遇到的奇葩问题NSString,NSO ... -
将NSString转为NSArray
2014-04-22 16:52 6269// Your JSON data: NSString *c ... -
另外一种NSData转为NSString的方法
2014-04-22 15:40 1211If the data is not null-termina ... -
HTTP,Socket,WebSocket异同
2014-04-18 16:54 1832参考文章: http://abbshr.g ... -
push隐藏UINavigtaionBar和UITabbar
2014-04-17 15:20 1092[self.navigationController setN ...
相关推荐
2. **Storyboard或XIB文件**:这种方式是通过加载Storyboard或XIB文件来创建`UIViewController`实例。 在初始化过程中,需要注意的是,子类通常会先调用父类的初始化方法,然后再执行自己的初始化逻辑。例如: ```...
如果UIViewController是从storyboard中加载的,则系统会根据storyboard文件中的定义来加载对应的视图。开发者需要在storyboard中为视图控制器配置一个或多个视图,并设置相关的属性。 #### 3. 根据XIB文件加载视图 ...
对于UIViewController,这意味着开发者无需在init、dealloc等方法中显式地调用retain、release和autorelease。 4. **Child View Controllers**:在iOS5中,UIViewController支持添加子控制器(Child View ...
本节将详细讲解如何通过编程方式定制`UIViewController`,而不是依赖于XIB或Storyboard文件。 首先,我们了解`UIViewController`的基本工作原理。当一个`UIViewController`实例被初始化时,如果它没有关联的XIB文件...
当创建一个UIViewController实例时,我们可以使用`init`,`initWithNibName:bundle:`,或`initWithCoder:`。在代码中,我们同样重写了这些方法来追踪它们的调用顺序。 - `loadView`:这个方法是加载视图的起点。...
但在此之前,你需要创建一个`UIViewController`的实例,并加载其对应的NIB(用户界面文件)或Storyboard。 ```objc UIViewController *newController = [[UIViewController alloc] initWithNibName:@...
MainViewController *mainViewController = [[MainViewController alloc] init]; self.window.rootViewController = mainViewController; [self.window makeKeyAndVisible]; return YES; } ``` ### 项目结构...
1. **初始化方法**:如`init(frame:)`和`required init?(coder:)`,用于设置初始状态和配置视图的基本属性。 2. **数据模型**:为了实现动态刷新,需要有一个数据模型来存储日历的相关信息,比如日期、星期、月份等...
在Swift中,我们可以使用`init(nibName:bundle:)`或`init(viewControllers:)`初始化方法。后者允许我们传入一个包含多个UIViewController的数组,这些视图控制器将作为TabBar的各个标签页。 2. **创建...
1. UIViewController的生命周期:包括`awakeFromNib`、`init`、`loadView`、`viewDidLoad`、`viewWillAppear`、`viewDidAppear`、`viewWillDisappear`和`viewDidDisappear`等方法的使用场景和调用顺序。 2. 自定义...
这个方法允许我们指定界面的初始加载文件,通常是.xib或.storyboard文件,这些文件包含了UI元素的布局和配置信息。`nibName`参数指定了加载的.nib文件的名称,而`bundle`参数通常传入nil,表示使用应用程序的主要...
- 需要动态创建视图控制器时,可以使用storyboard.instantiateViewController(withIdentifier:)或init(nibName:bundle:)初始化。 - 添加新视图到父视图,使用addChild(_:), view.addSubview(_:)和didMove(toParent...
在Storyboard中,创建一个新的UIViewController,为其添加一个UIImageView,用于显示图片。同时,设置UIImageView的UserInteractionEnabled属性为YES,以便响应触摸事件。 为了实现长按手势识别,我们需要添加...
在Swift中,`UITabBarController`是`UIViewController`的子类,它管理一组`UIViewController`对象,这些对象通常显示在底部的选项卡上。每个选项卡对应一个子视图控制器,用户点击选项卡时,对应的视图控制器将被...
现在,你可以在其他UIViewController或Storyboard中使用这个自定义视图。通过实例化`CustomView`类,或者在Storyboard中选择`CustomView`作为View的Class,然后配置所需的属性。 **注意事项** 1. 在XIB文件中,确保...
在代码中,可以使用`initWithCoder:`或`init`方法创建`UITabBarController`实例,然后通过`viewControllers`属性设置数组,包含每个子`UIViewController`。 2. **自定义TabBarItem** 每个`UIViewController`子项都...
1. **初始化**:创建`UIViewController`实例时,通常会重写`initWithNibName:bundle:`或`init`方法来设置初始状态。 2. **视图加载**:`UIViewController`的`view`属性是屏幕上的主视图,可以通过`loadView`方法...
UIViewController *vc1 = [self.storyboard instantiateViewControllerWithIdentifier:@"vc"]; UIViewController *vc2 = [self.storyboard instantiateViewControllerWithIdentifier:@"vc"]; UIViewController *vc...
class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout { let collectionView = UICollectionView(frame: .zero, collectionViewLayout: ...