码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
iOS progressview的简单使用
head 代码。。Java代码#import@interfaceViewController:UIViewController{UIProgressView*progressview;UIProgressView*progressviewbar;NSTimer*timer;}@property(re...
分类:移动开发   时间:2014-06-04 19:55:32    阅读次数:359
ios成长之每日一遍(day 8)
这几天都有一些任务要跟, 把ios的学习拉后, 看看要抓紧咯, 看看轮到的学习的是UITableView。BIDViewController.h#import @interface BIDViewController : UIViewController@property (copy, nonato...
分类:移动开发   时间:2014-05-31 11:27:25    阅读次数:386
UIViewController新方法的使用(transitionFromViewController:toViewController:duration:options:animations:completion:)
iOS5中,UIViewController新添加了几个方法:- (void)addChildViewController:(UIViewController *)childController NS_AVAILABLE_IOS(5_0);- (void) removeFromParentViewC...
分类:其他好文   时间:2014-05-27 16:07:35    阅读次数:456
ios message box
@interface K3ViewController : UIViewController@end#import "K3ViewController.h"@interface K3ViewController ()@property (weak, nonatomic) IBOutlet UILab...
分类:移动开发   时间:2014-05-26 19:15:17    阅读次数:259
iOS添加Google语言识别功能
#import #import #import @interface RootViewController : UIViewController{ AVAudioRecorder *recoder; NSURLConnection *urlConnection; NSMutabl...
分类:移动开发   时间:2014-05-26 07:48:10    阅读次数:483
__NSArrayI removeObjectAtIndex:]: unrecognized selector sent to instance
同样是删除cell问题,帮我看看问题出现在哪,谢谢!我的类文件myFile是继承UIViewController的(目的是为了能够在一个view里切换不同的tableView),在myFile.h中定义一个可变数组editContactsList,然而在IB里面添加了一个view,两个tableVi...
分类:其他好文   时间:2014-05-23 03:21:49    阅读次数:380
ios 获取当前view的controller
//获取view的controller- (UIViewController *)viewController { for (UIView* next = [self superview]; next; next = next.superview) { UIResponder *nextRe...
分类:移动开发   时间:2014-05-21 23:38:35    阅读次数:1000
iOS7 自定义动画跳转
简介 在iOS7系统中,如果你使用短信或者appStore苹果原生的工具的时候会发现这么一个细节。UINavigationViewController中界面的Push不再是像iOS6的旧界面左移,新的界面直接右侧滑入,而是新的视图是从右侧滑入并且盖在了之前视图控制器之上,还可以通过手势在界面左侧边界滑动来跳转到之前的界面。如图1.1,1.2。 图1.1                 ...
分类:移动开发   时间:2014-05-21 09:27:10    阅读次数:289
UIViewController中view的释放过程
第一、viewDidUnload方法 1.调用时机: 内存吃紧时,在iPhone OS 3.0之前didReceiveMemoryWarning是释放无用内存的唯一方式,但是OS 3.0及以后viewDidUnload方法是更好的方。当系统内存吃紧的时候会调用该方法,释放view,释放的view必须是已经在内存的view,即通过viewdidload之后的view,而不是control...
分类:其他好文   时间:2014-05-18 07:42:34    阅读次数:305
ios7中 丰富多彩的UIViewController之间的切换
转载自:http://onevcat.com/2013/10/vc-transition-in-ios7/ 毫无疑问,ViewController(在本文中简写为VC)是使用MVC构建Cocoa或者CocoaTouch程序时最重要的一个类,我们的日常工作中一般来说最花费时间和精力的也是在为VC部分编写代码。苹果产品是注重用户体验的,而对细节进行琢磨也是苹果对于开发者一直以来的要求和希望。在用...
分类:移动开发   时间:2014-05-15 19:21:35    阅读次数:486
1229条   上一页 1 ... 120 121 122 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!