码迷,mamicode.com
首页 >  
搜索关键字:super feature    ( 8657个结果
UISwitch控件
用处:开关空间,用于处理两种状态-(void)viewDidLoad{ [super viewDidLoad]; CGRect frame = CGRectMake(20,20,0,0); self.switch = [[UISwitch alloc]initWithFrame:frame]; //...
分类:其他好文   时间:2014-08-06 18:23:01    阅读次数:213
UITextField控件
用处:输入控件-(void)viewDidLoad{ [super viewDidLoad];//设置大小CGRect frame = CGRectMake(20,20,150,40);//实例化UITextFieldself.tf = [[UITextField alloc]initWithFra...
分类:其他好文   时间:2014-08-06 17:16:41    阅读次数:213
Objective-c 子类重写方法调用[super method]小实验
最近温习《learn objective-c on the mac》第4章关于重写的调用了[super setFillColor:c]很不理解其作用,可能是因为翻译逻辑不清的原因吧,特地写了个小例子理解一下定义一个father类和son类father:#import @interface fathe...
分类:其他好文   时间:2014-08-06 11:41:41    阅读次数:241
NV SDK 10 (1) Clipmaps
Clipmaps sample:AbstractClipmaps are a feature first implemented on SGI workstations that allow mappingextremely high resolution textures to terrains....
分类:其他好文   时间:2014-08-06 01:44:01    阅读次数:434
添加功能区按钮到SP2010某一列表或库
添加功能区按钮到SP2010某一列表或库 有时候你需要给列表/库的功能区天假期新按钮--没有什么比这更简单的了。你只需要新建一个SP项目,添加一个feature,添加一个空白元素,编辑它的Elements.xml文件。...
分类:其他好文   时间:2014-08-05 22:33:10    阅读次数:264
android之【本地通知Notification】
public class NotificationTest extends Activity { static final int NOTIFICATION_ID = 0x1123; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setC...
分类:移动开发   时间:2014-08-05 19:23:00    阅读次数:202
UITableViewCell的prepareForReuse方法
cell被重用如何提前知道? 重写cell的prepareForReuse官方头文件中有说明.当前已经被分配的cell如果被重用了(通常是滚动出屏幕外了),会调用cell的prepareForReuse通知cell.注意这里重写方法的时候,注意一定要调用父类方法[super prepareForReuse] .这个在使用cell作为网络访问的代理容器时尤其要注意,需要在这里通知取消掉前一次网络...
分类:其他好文   时间:2014-08-05 15:58:09    阅读次数:352
A trip through the Graphics Pipeline 2011_12 Tessellation
Welcome back! This time, we’ll look into what is perhaps the “poster boy” feature introduced with the D3D11 / Shader 5.x hardware generation: Tessella...
分类:其他好文   时间:2014-08-05 02:55:48    阅读次数:272
【UIKit】UITableView.01
UITableView.01:section:组别row:行号【1】拖入一个UITableView【2】将TableView的dataSource与控制器连接【3】首先得遵循UITableView的数据源协议代码1.加入显示数据内容- (void)viewDidLoad{ [super vie...
分类:其他好文   时间:2014-08-05 00:20:28    阅读次数:412
HDU 1087 Super Jumping! Jumping! Jumping! 最大子序列的和
Problem Description Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this game, so I introduce it to yo...
分类:其他好文   时间:2014-08-04 17:50:47    阅读次数:158
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!