码迷,mamicode.com
首页 >  
搜索关键字:interface    ( 13681个结果
为UIView视图切换添加动画效果
我们定义了一个动画类来实现视图切换的动画效果,这个类只包含一个类方法,可直接调用,具体代码如下:头文件:#import @interface ViewAnimation : NSObject/*============================页面切换的方法==================...
分类:其他好文   时间:2014-07-22 23:13:34    阅读次数:384
IOS-简单WebView的使用
//要实现UIWebViewDelegate代理@interface TestViewController : UIViewController{ UIWebView *protWebView;}@property (retain, nonatomic) IBOutletUIWebView *pr....
分类:移动开发   时间:2014-05-01 15:13:29    阅读次数:420
Java简明教程 09. 抽象类(abstract class)和接口(interface)
抽象类(abstract class) 描述抽象的事物, 比如人类(human), 就是一个抽象类. 对于人类这个抽象类, 具体的就是某一个人, 比如张三(男)啊, 小红(女)啊,虽然说人都会eat, 可是男人和女人的eat似乎又是不一样的.男人一般都是大口大口的吃, 而女人比较慢条斯理. ...
分类:编程语言   时间:2014-05-01 00:10:59    阅读次数:439
10-Objective-C特有语法:Category、类对象、description、SEL、NSLog输出增强
一、 分类-Category1. 基本用途OC中如何在不改变原来类模型的前提下,给类扩充一些方法?有2种方式 1>.继承 2>.分类(Category)2. 格式分类的声明@interface 类名 (分类名称)// 方法声明@end分类的实现@implementation 类名 (分类名称)/.....
分类:其他好文   时间:2014-04-29 11:23:47    阅读次数:384
C#博文搜集
1. abstract (抽象类)参考12. interface (接口)参考1
分类:其他好文   时间:2014-04-29 09:45:46    阅读次数:298
ios-表视图-demo3-单选
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bun...
分类:移动开发   时间:2014-04-28 17:19:46    阅读次数:596
细说UI线程和Windows消息队列
在Windows应用程序中,窗体是由一种称为“UI线程(User Interface Thread)”的特殊类型的线程创建的。首先,UI线程是一种“线程”,所以它具有一个线程应该具有的所有特征,比如有一个线程函数和一个线程ID。其次,“UI线程”又是“特殊”的,这是因为UI线程的线程函数中会创建一种...
分类:编程语言   时间:2014-04-28 16:38:31    阅读次数:622
ios-表视图-demo5-索引
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bun...
分类:移动开发   时间:2014-04-28 15:11:25    阅读次数:656
java图形用户界面程序
GUI(Graphical User Interface)定义:一个程序中,用户可以可以看见和与之交流的部分。支持图形用户界面的两套组件:1,AWT2,Swing建立步骤:建立容器-建立组件-将组件添加到容器-设置布局Swing中的重量级容器:继承自AWT中的Container类,为其他容器和组件提...
分类:编程语言   时间:2014-04-28 11:34:23    阅读次数:509
java Annotation 自定义实例
Defining annotations Here is the definition of the annotation above. You can see that annotation definitions look a lot like interface definitions.  In fact, they compile to class files like any oth...
分类:编程语言   时间:2014-04-27 21:47:05    阅读次数:348
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!