码迷,mamicode.com
首页 >  
搜索关键字:uikit    ( 1245个结果
01-Swift基础语法
一、Swift基础操作导入框架OC是#import<UIKit/UIKit.h>Swift是importUIKitswift定义标示符:必须指定是常量还是变量var(变量)/let(常量)标识符的名称:标识符的类型=初始化值vara:Int=10;a=29;b=3.11错误写法(类型不对)letb:Double=3.14;3.语句结束后可以不跟;前提:一行..
分类:编程语言   时间:2016-09-07 23:14:00    阅读次数:168
UISegmentedControl去掉背景色与UIScrollView联动
UISegmentControl分段控制器是UIKit框架提供的一组按钮栏,提供多个可选的按钮,只能激活其中的一个,响应事件。主要用来在同一层次重要性下不同的信息展示或者不同的界面展示之间切换。例如手机QQ的主界面的消息和电话两个选项卡。 我们看一下UISegmentedControl的继承结构: ...
分类:其他好文   时间:2016-09-01 17:54:25    阅读次数:900
Notification的简单使用
// // ViewController.swift // xcode8Beta测试 // // Created by zhangxu on 16/8/31. // Copyright © 2016年 zhangxu. All rights reserved. // import UIKit cla ...
分类:其他好文   时间:2016-08-31 11:50:08    阅读次数:114
iOS---searchBar 搜索框 光标初始位置后移
#import <UIKit/UIKit.h> @interface SearchBar : UITextField @property (nonatomic,strong) UIButton *button; + (instancetype)searchBar; @end #import "Sea ...
分类:移动开发   时间:2016-08-30 19:21:01    阅读次数:219
iOS开发UIColor,CGColor,CIColor三者的区别和联系
最近看了看CoreGraphics的东西,看到关于CGColor的东西,于是就想着顺便看看UIColor,CIColor,弄清楚它们之间的区别和联系。下面我们分别看看它们三个的概念: 一、UIColor UIColor是UIKit中存储颜色信息的一个重要的类,一个UIColor对象包含了颜色和透明度 ...
分类:移动开发   时间:2016-08-26 10:23:16    阅读次数:202
iOS开发UIkit动力学UIDynamicAnimator一系列动画
UIDynamicAnimator类,通过这个类中的不同行为来实现一些动态特性。 UIAttachmentBehavior(吸附),UICollisionBehavior(碰撞),UIGravityBehavior(重力),UIPushBehavior(推动),UISnapBehavior(捕捉)。 ...
分类:移动开发   时间:2016-08-23 11:31:49    阅读次数:216
iOS开发基础知识--碎片25
iOS开发基础知识--碎片25 1:使用@protocol实现delegate和datasource模式 #import <UIKit/UIKit.h> @protocol MyViewDataSource,MyViewDelegate; @interface myView : UIView<UIA ...
分类:移动开发   时间:2016-08-22 21:27:38    阅读次数:186
iOS开发基础知识--碎片12
iOS开发基础知识--碎片12 1:Delegate运用 .h #import <UIKit/UIKit.h> @protocol FilterHeaderViewDelegate <NSObject> @required -(void)filterHeaderViewMoreBtnClicked: ...
分类:移动开发   时间:2016-08-21 11:03:55    阅读次数:280
UIMenuController搭配UIPasteboard,执行拷贝-黏贴操作-b
一.基本概念 UIKit框架中,可以直接执行拷贝黏贴操作的有:UITextView、UITextField和UIWebView,其他控件需要实现相关方法。 关于UIPasteboard ·黏贴板是app内或者app之间,交换数据的标准机制 ·有公开的也有私有的,公开的黏贴板为系统级别(system ...
分类:其他好文   时间:2016-08-21 00:59:59    阅读次数:211
iOS 中自定义TableViewCell方法
自定义cell时需要继承UITableViewCell. 举例:ZLSchoolListTableCell继承UITableViewCell ZLSchoolListTableCell.h文件 #import <UIKit/UIKit.h> @class SchoolModel(模型); @inte ...
分类:移动开发   时间:2016-08-18 19:46:12    阅读次数:177
1245条   上一页 1 ... 27 28 29 30 31 ... 125 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!