码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
键盘上附加工具栏
m_listView:textview在tableview上,同时需要修改tableview高度//注册观察者 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboarWillShow:) na...
分类:其他好文   时间:2014-07-09 14:56:17    阅读次数:185
IOS开发之——获取屏幕的尺寸及各模拟器代表的型号
获取屏幕尺寸[[[UIScreen mainScreen] currentMode].size.width];[[[UIScreen mainScreen] currentMode].size.height];也能够:NSLog(@"FrameHeight:%fFrameWidth:%f",self...
分类:移动开发   时间:2014-07-09 14:53:40    阅读次数:213
Python:防止urllib2 302自动跳转
例子import urllib2class RedirctHandler(urllib2.HTTPRedirectHandler):"""docstring for RedirctHandler"""def http_error_301(self, req, fp, code, msg, heade...
分类:编程语言   时间:2014-07-08 23:44:41    阅读次数:584
iOS自定义segue和自定义segue转场动画
#import "CoolSegue.h" @implementation CoolSegue -(void)perform { UIViewController* source = self.sourceViewController; UIViewController* destination = self.destinationViewController;...
分类:移动开发   时间:2014-07-08 21:12:14    阅读次数:207
iOS UITableView 去除多余分割线
在UITableView初始化时加上以下代码即可: self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; 效果演示:...
分类:移动开发   时间:2014-07-08 20:24:33    阅读次数:283
ios save image to album
- (void)savePhotoToAlbum {     ZoomScrollView *zoomScrollView = (ZoomScrollView*)[self.scrollView viewWithTag:BEGIN_TAG_FOR_IMAGE+self.currentImagePage];     dispatch_async(dispatch_get_global_que...
分类:移动开发   时间:2014-07-08 19:34:27    阅读次数:417
三种初始化
父类中 - (id)initWithName:(NSString *)aName                sex:(NSString *)aSex                age:(NSInteger)aAge {     //调用父类的初始化方法     self = [super init];//防止初始化失败,赋值失败     if (self) {...
分类:其他好文   时间:2014-07-08 17:07:59    阅读次数:138
iOS开发- backBarButtonItem 颜色/文字修改
iOS7之后. 默认的返回按钮字体颜色是蓝色的, 显示内如是父VC(上一级界面)的title如果要做修改, 可以通过下面的办法:1. 修改字体颜色(1) 在plist里面, 加上View controller-based status bar appearance, 并且设置为NO(2) 在需要修改的那个界面. 加入如下代码(加在viewDIdLoad即可) self.navigationC...
分类:移动开发   时间:2014-07-08 13:54:47    阅读次数:239
项目中遇到的问题解决:深刻认识到类的初始化
-(NSArray *)getdataFromDatabase { NSString *path = [self getDBPath]; NSLog(@"path ==== %@",path); NSLog(@"self.getDBPath == %@",[self getDBPath]); FMDatabase *membersDB = [FMDatab...
分类:其他好文   时间:2014-07-08 13:07:44    阅读次数:127
jsp-->self-defined tag with function tag in taglib
一.WEB-INFO下的*.tld自定义标签描述文件PAFTaglib.tld<?xmlversion="1.0"encoding="UTF-8"?><taglibxmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://..
分类:Web程序   时间:2014-07-08 10:03:44    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!