检查属性的outLet发现应该是连接viewController的就可以了
分类:
其他好文 时间:
2014-08-13 12:45:06
阅读次数:
442
个人写的一些样例://// ViewController.m// CABasicAnimationDemo//// Created by haotian on 14-6-13.// Copyright (c) 2014年 Baseus. All rights reserved.//#impo...
分类:
其他好文 时间:
2014-08-12 21:56:14
阅读次数:
401
在ipad上present 一个 navigation controller 时,present后弹出的keyboard,不能够 dismiss 掉。即使 textfield resignFirstResponder,keyboard也不会消失。
Problem:
在iPad keyboard上发现一个问题,当viewController在navigation controller下以模态视图...
分类:
其他好文 时间:
2014-08-12 00:42:23
阅读次数:
193
我这里是的引导页是viewController #import <UIKit/UIKit.h> 我这里是将图片都加到了一个bundle的文件里 #define GET_IMAGE_FROM_BUNDLE_PATH(imageName,bundleName) [ResBundleUtils imageNamedFromImagesBundl...
分类:
移动开发 时间:
2014-08-11 15:25:33
阅读次数:
257
添加AssetsLibrary.framework
然后引入
#import
一个获取所有图片的类
.h
#import
#include
@interface ViewController : UIViewController{
ALAssetsLibrary *library;
NSArray *imageArray;
NS...
分类:
其他好文 时间:
2014-08-09 13:32:07
阅读次数:
261
//// ViewController.m// JapaneseDictionary//// Created by apple on 14-8-7.// Copyright (c) 2014年 苹果IOS软件开发者. All rights reserved.//#import "ViewContro...
分类:
其他好文 时间:
2014-08-09 00:01:26
阅读次数:
406
1.首先,苹果把UIViewControllerBasedStatusBarAppearance默认的值设为YES,是有他的道理的,新系统下,苹果希望我们的viewcontroller去控制status bar,也就是说,我们大多数的界面应该是统一的,偶尔一些viewcontroller需要stat...
分类:
移动开发 时间:
2014-08-08 20:40:06
阅读次数:
226
解决问题:部分复杂页面的Controller过于庞大,不利于维护与复用;复杂的页面大多是基于tableview的页面。复杂页面的代码大致可分为两部分(复杂的View布局用Nib实现的话,一般大家都是这么做),一部分是响应逻辑,一部分是页面显示逻辑;对于基于tableview的页面,响应逻辑即每个Ce...
分类:
其他好文 时间:
2014-08-08 15:44:56
阅读次数:
208
#import #import "SRWebSocket.h"@interface ViewController : UIViewController//- (IBAction)SaveLogin:(id)sender;@property (weak, nonatomic) IBOutlet UIT...
分类:
其他好文 时间:
2014-08-08 11:50:25
阅读次数:
249
效果:视图从大--小缩放显示/小--大(只是比例问题)方法1.直接show出view的时候:把下面的这段代码加到viewController或者view出现的时候就OKself.view.transform = CGAffineTransformMakeScale(1.0f, 1.0f);//将要显...
分类:
移动开发 时间:
2014-08-06 18:29:41
阅读次数:
295