码迷,mamicode.com
首页 >  
搜索关键字:window-top opener parent self parent与opener的区别    ( 21313个结果
MACOS获得 CGContextRef 获得图片数据类型转换 NSImage、CIImage、CGImageRef
将NSImage转换为CIImage#import // convert NSImage to bitmapNSImage * myImage= [self currentImage];NSData* tiffData = [myImage TIFFRepresentation];NSBitmapI...
分类:其他好文   时间:2014-07-22 23:16:13    阅读次数:586
python运算符重载2
1、重载构造函数和减法运算__init__,__sub__ #file number.py class Number: def __init__(self,data): self.data = data def __sub__(self,other): return Number(se...
分类:编程语言   时间:2014-07-22 23:15:36    阅读次数:510
shell脚本遍历目录及其下子目录
用shell写了个递归遍历目录的脚本,本脚本实现递归遍历指定目录,打印目录下的文件名(全路径)。#!/bin/sh function scandir() { local cur_dir parent_dir workdir workdir=$1 cd ${workdir} if [ ${w...
分类:其他好文   时间:2014-07-22 23:14:53    阅读次数:563
window.close关闭当前页面
浏览器处于安全策略考虑,只允许Javascript关闭由javascript打开的页面,为了用js关闭当前窗口,我们可以这么考虑,这也是最常用的做法。fdsafasfunction xx(){ // 重置window.opener用来获取打开当前窗口的窗口引用 // 这里置为null,避免I...
分类:Windows程序   时间:2014-07-22 23:09:52    阅读次数:575
class-2
在class内部做点事class FirstClass: # 定义类对象 def setData(self, value): # 定义类方法 self.data = value # self就指这个实例 ...
分类:其他好文   时间:2014-04-30 16:11:02    阅读次数:337
Mybatis 错误Illegal overloaded getter method ....
错误描述:Illegal overloaded getter method with ambiguous type for property parent in class class cn.domain.Menu. This breaks the JavaBeans specification a...
分类:其他好文   时间:2014-04-30 15:24:40    阅读次数:6857
Javascript递归函数
递归函数是在一个函数通过名字调用自身的情况下构成的。如下: function self(num){ if(num<=1){ return 1; } else{ return num*self(num-1); }}这是一个经典的求阶乘的函数。当在外面调用self(4)是可以得到24 ,...
分类:编程语言   时间:2014-04-30 14:41:43    阅读次数:499
一个延时调用问题
如果用下面第1行的写法,调用[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(removeFromSuperview) object:nil];可以生效如果用下面第3行的写法,调用[NSObject c...
分类:其他好文   时间:2014-04-29 17:21:46    阅读次数:326
[学习笔记]iphone学习小技巧
1. 版本控制 -- 是否响应某个方法 、查看当前系统版本。 eg:[self respondsToSelector:@Selector(presentModalViewController:animated:)]//Yes:表示响应这个方法[[UIDevice currentDevice].sys...
分类:其他好文   时间:2014-04-29 15:16:27    阅读次数:339
降低UIViewController切换的耦合
我们一般切换UIViewController的时候用的是如下代码 #import "UIViewControllerDemo.h" UIViewControllerDemo *vc = [UIViewControllerDemo alloc] initWithNibName:nil bundle:nil] autorelease]; [self.navigationController pushViewController:vc animated:YES];...
分类:其他好文   时间:2014-04-27 21:21:00    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!