m_listView:textview在tableview上,同时需要修改tableview高度//注册观察者 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboarWillShow:) na...
分类:
其他好文 时间:
2014-07-09 14:56:17
阅读次数:
185
获取屏幕尺寸[[[UIScreen mainScreen] currentMode].size.width];[[[UIScreen mainScreen] currentMode].size.height];也能够:NSLog(@"FrameHeight:%fFrameWidth:%f",self...
分类:
移动开发 时间:
2014-07-09 14:53:40
阅读次数:
213
例子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
#import "CoolSegue.h"
@implementation CoolSegue
-(void)perform
{
UIViewController* source = self.sourceViewController;
UIViewController* destination = self.destinationViewController;...
分类:
移动开发 时间:
2014-07-08 21:12:14
阅读次数:
207
在UITableView初始化时加上以下代码即可:
self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
效果演示:...
分类:
移动开发 时间:
2014-07-08 20:24:33
阅读次数:
283
- (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
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
一.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