码迷,mamicode.com
首页 >  
搜索关键字:@hide    ( 2565个结果
OC基础复习02-BOOL
首先看下objc.h里面的定义 1 /// Type to represent a boolean value. 2 #if !defined(OBJC_HIDE_64) && TARGET_OS_IPHONE && __LP64__ 3 typedef bool BOOL; 4 #else 5 t...
分类:其他好文   时间:2015-06-30 20:05:45    阅读次数:110
EXCEL之利刃出鞘----VBA 彻底隐藏工作表
今天和大家分享的是隐藏工作表的方法。普通情况下,也是大家所熟知的方法,就是右键点击所要隐藏的工作表然后选择hide。操作如下再找sheet2就不见了。如果再显示呢,右键点击工作表标签,然后选择unhide选择需要之前被隐藏的工作表以将其显示出来。如上操作,我们隐藏工作不能..
分类:编程语言   时间:2015-06-29 17:56:18    阅读次数:162
iOS中四种实例变量的范围类型@private@protected@public@package
文档上记录是这样的The Scope of Instance VariablesTo enforce the ability of an object to hide its data, the compiler limits the scope of instance variables—that...
分类:移动开发   时间:2015-06-28 12:39:00    阅读次数:177
Fragment(12)FragmentTransaction add() hide() detach() show()
转自: http://my.oschina.net/u/614511/blog/70736使用add()加入fragment时将触发onAttach(),使用attach()不会触发onAttach()使用replace()替换后会将之前的fragment的view从viewtree中删除触发顺序:...
分类:其他好文   时间:2015-06-27 16:12:49    阅读次数:125
显示和隐藏系统任务栏的类
1 public static class WinTask 2 { 3 private const int SW_HIDE = 0;//API参数表示隐藏窗口 4 private const int SW_SHOW = 5;//API参数表示用当前的大小...
分类:其他好文   时间:2015-06-26 12:28:05    阅读次数:161
[LeetCode] Max Points on a Line
Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.Hide TagsHash TableMath给出平面上的点,问一条直线最多穿过几个点.要不是之前看过这个...
分类:其他好文   时间:2015-06-25 19:18:34    阅读次数:124
AS2.0鼠标跟随和拖动代码
1,鼠标跟随。 a: Mouse.hide();//隐藏鼠标,Mouse.show()显示鼠标。 MC1.startDrag(true);//直接利用函数实现。 b: Mouse.hide(); onEnterFrame=function(){//坐标赋值实现 MC1._x=_xmouse;//鼠标坐标赋值给MC1。 MC1._y=_ymouse; } 2,...
分类:其他好文   时间:2015-06-25 17:35:53    阅读次数:132
[LeetCode] Insertion Sort List
Sort a linked list using insertion sort.Hide TagsLinked ListSort分析:把链表分成两部分:排好序的和为排序的,排好序的以NULL结尾,cur插在preInsertion和insertion之间,next保存cur->next. 另外...
分类:其他好文   时间:2015-06-25 16:59:35    阅读次数:94
cool jQuery tips
$().slideToggle("slow/fast") //move the object$().animate({,}) //cool animation tool function$().stop()$().hide(100,callback) //attribute to start aft...
分类:Web程序   时间:2015-06-23 23:04:24    阅读次数:218
C# this.Hide()
C# this.Hide()第一次用的时候是在_Load函数里:BookSystem bs = new BookSystem(); bs.ShowDialog(); this.Hide();第二次在登陆成功时:BookSystem bs = new BookSystem(); bs.userName...
分类:Windows程序   时间:2015-06-23 21:28:33    阅读次数:168
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!