码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
【代码笔记】scrollerView里多个tableView加搜索框
一,效果图。 二,工程图。 三,代码。 RootViewController.h #import <UIKit/UIKit.h> #import "customCell.h" @interface RootViewController : UIViewController <UISearchBarD
分类:其他好文   时间:2016-02-17 09:30:49    阅读次数:193
IOS跑马灯效果,实现文字水平无间断滚动
ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController{ 4 NSTimer *timer; 5 UIScrollView *scrollViewText; 6 } 7 8
分类:移动开发   时间:2016-02-15 18:10:59    阅读次数:1157
ios轻量级开发FWZ
1.编程规范 2.设计模式MVC、代理 3.UIKit框架 UIkit简介以及UI层次结构、UI类结构 UI组件原理以及使用 UIApplication UIView以及子类 UIViewController 4.自定义UI组件 5.多点触控、手势处理 6.UI动画编程 7.兼容性开发 分辨率兼容(
分类:移动开发   时间:2016-02-12 00:57:57    阅读次数:178
轻量级开发
1.编程规范 2.设计模式MVC、代理 3.UIKit框架 UIkit简介以及UI层次结构、UI类结构 UI组件原理以及使用 UIApplication UIView以及子类 UIViewController 4.自定义UI组件 5.多点触控、手势处理 6.UI动画编程 7.兼容性开发 分辨率兼容(
分类:其他好文   时间:2016-02-12 00:56:26    阅读次数:251
Swift: 是用Custom Segue还是用Transition动画
用一个很简单的场景做为例子:在storyboard上,你有用UINavigationController串起来两个UIViewController。这两个controller之间要互相跳转,A->B, B->A。跳转的时候默认的那个push来push去的效果你觉得很傻X,所以想换一个效果。比如,不那
分类:编程语言   时间:2016-02-03 18:17:35    阅读次数:231
触摸事件基本介绍
iOS中的事件 响应者对象 ● 在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事 件。我们称之为“响应者对象” ● UIApplication、UIViewController、UIView都继承?自UIResponder,因此它们都 是响应者对象,都能够接
分类:其他好文   时间:2016-02-02 19:52:36    阅读次数:181
iOS UITabBarController
一、添加子控制器 UITabBarController添加控制器的方式有2种 添加单个子控制器 - (void)addChildViewController:(UIViewController *)childController;eg:[tabbarVc addChildViewController
分类:移动开发   时间:2016-02-02 14:58:45    阅读次数:197
【分享】iOS功能界面漂亮的弹出框
STPopup 为 iPhone 和 iPad提供了 STPopupController UINavigationController 弹出的风格。 特性: Extend your view controller from UIViewController, build it in your fam
分类:移动开发   时间:2016-02-01 18:20:00    阅读次数:238
Warning: Attempt to present on whose view is not in the window hierarchy!
当我想从一个VC跳转到另一个VC的时候,一般会用 - (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag completion:(void (^)(void))com
分类:Windows程序   时间:2016-01-30 22:45:40    阅读次数:234
iOS 搜索框控件 最简单的dome
刚学习搜索框控件,写了个最简单的dome #import <UIKit/UIKit.h> .h @interface ViewController : UIViewController<UISearchBarDelegate,UISearchDisplayDelegate,UITableViewDa
分类:移动开发   时间:2016-01-29 00:06:38    阅读次数:244
1229条   上一页 1 ... 37 38 39 40 41 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!