AViewController----Push----BViewController1.属性AViewController---pop----BViewController1.代理 2.通知 3.Block 4.NSUserDefault 5.单例 6.属性 //Bviewcontroller已经....
分类:
其他好文 时间:
2015-04-10 22:20:49
阅读次数:
112
1.stack集合栈:stack,先进后出,一个一个赋值,一个一个取值,按顺序。属性和方法.count 取集合内元素的个数.push() 将元素一个一个推入集合中.pop() 将元素一个一个弹出集合.clear() 清空集合2.queue队列集合:先进先出,一个一个的赋值,一个一个的取值,按照顺序。...
分类:
其他好文 时间:
2015-04-10 22:04:43
阅读次数:
119
用POP动画编写带富文本的自定义动画效果【源码】https://github.com/YouXianMing/POPNumberCount【效果】【特点】* 支持富文本* 可定制型强(继承父类重写父类的startAnimation方法即可)* 支持动画的中断与持续* 支持CAMediaTimingF...
分类:
其他好文 时间:
2015-04-10 21:44:14
阅读次数:
133
一,popViewControllerAnimated[self.navigationController popViewControllerAnimated:YES];二,popToRootViewControllerAnimated[self.navigationController popTo...
分类:
其他好文 时间:
2015-04-10 20:03:05
阅读次数:
129
1、用一个整形数组实现一个有固定上界为100个的堆栈,实现push,pop,size方法并编写代码对堆栈进行功能测试,语言使用Java,C#或C++均可#include#includetemplate class CStack{public: CStack(){len=0;}; ~CS...
分类:
其他好文 时间:
2015-04-10 13:34:37
阅读次数:
270
Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
push(x) -- Push element x onto stack.pop() -- Removes the element on top o...
分类:
其他好文 时间:
2015-04-10 01:23:48
阅读次数:
130
js代码中:var a = 1, b;b = a;b = 2;console.log(a);//结果是1但是如果这样:var a = [1, 2, 3], b;b = a;b.pop();console.log(a);//结果是[1, 2];为什么呢?
分类:
Web程序 时间:
2015-04-10 01:11:20
阅读次数:
162
//堆栈,数组实现#includeusing namespace std;#define Maxsize 100class stack{public: int data[Maxsize]; int top = -1; //保存栈顶下标值};int pop(stack*ptrl);...
分类:
编程语言 时间:
2015-04-08 22:59:34
阅读次数:
204
各大型邮箱smtp服务器及端口收集:
>新浪邮箱smtp服务器
外发服务器:smtp.vip.sina.com
收件服务器:pop3.vip.sina.com
新浪免费邮件
外发服务器:smtp.sina.com.cn
收件服务器:pop3.sina.com.cn
>163邮箱smtp服务器
pop: pop.163.com
smtp: smtp.163.com
...
分类:
其他好文 时间:
2015-04-08 09:13:48
阅读次数:
208
#include#includeusing namespace std;string hname[19] = { "pop", "no", "zip", "zotz", "tzec", "xul", "yoxkin", "mol", "chen", "yax", "zac", "ceh", "mac...
分类:
其他好文 时间:
2015-04-08 00:39:06
阅读次数:
136