ViewControllerViewController是IOS开发中MVC模式中的C,ViewController是view的controller,ViewController的职责主要包括管理内部各个view的加载显示和卸载,同时负责与其他ViewController的通信和协调。在IOS中,有...
分类:
移动开发 时间:
2014-07-29 10:25:28
阅读次数:
375
在storyboard中ios创建一个新的场景,并且关联一个viewcontroller代码文件,初学者的记录
分类:
移动开发 时间:
2014-07-27 22:32:39
阅读次数:
422
今天使用swift写了个简单的tableView,语法和用法上跟oc没多大的区别。但是还是有一些细节的地方需要注意一下的。先上代码import UIKitclass ViewController: UIViewController,UITableViewDelegate,UITableViewDat...
分类:
其他好文 时间:
2014-07-26 17:11:01
阅读次数:
207
最终效果图:
ViewController.h
//
// ViewController.h
// PinYin4Objc汉字转拼音演示demo
//
// Created by beyond on 14-7-26.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import...
分类:
移动开发 时间:
2014-07-26 15:08:40
阅读次数:
291
1 interface ViewController () 2 3 @property (weak, nonatomic) IBOutlet UITableView *tableView; 4 5 @end 6 7 @implementation ViewController 8 9 ...
分类:
其他好文 时间:
2014-07-25 02:24:44
阅读次数:
248
UIView 可以设定autoresizingMask,当它的 superView 尺寸改变时,适应何种变化。不过 CALayer 却没有这个属性,如和做到让 CALayer 和 UIView 一样?可以这样:// in ViewController- (void)viewWillLayoutSub...
分类:
其他好文 时间:
2014-07-24 16:59:25
阅读次数:
177
//// ViewController.m// AudioPlayer//// Created by apple on 14-7-18.// Copyright (c) 2014年 苹果IOS软件开发者. All rights reserved.//#import "ViewController.h...
分类:
其他好文 时间:
2014-07-24 14:37:45
阅读次数:
275
自定义cell,多类型cell混合使用,cell自适应高度自定义cell就是创建一个UITableViewCell的子类把cell上的空间创建都封装在子类中,简化viewController中的代码cell中的空间如何显示Model中的信息cell中声明一个Model类型的属性,viewContro...
分类:
其他好文 时间:
2014-07-23 20:42:35
阅读次数:
366
可以使用PPLabel来实现这个功能,下载代码https://github.com/petrpavlik/PPLabel。这个demo有两个小bug:1、如果最后一个单词后面没有空格字符,那么不能点击。修改办法:在ViewController中,有一个代理方法:- (void)highlightWo...
分类:
微信 时间:
2014-07-23 14:51:56
阅读次数:
380
首先在ViewController.h文件中:#import #import "SRWebSocket.h"//继承SRWebSocket.h,作为登录服务器@interface ViewController : UIViewController//- (IBAction)SaveLogin:(id...
分类:
移动开发 时间:
2014-07-22 22:42:34
阅读次数:
305