今天复习了下导航器,把播放器美化了下// ViewController.m// 播放器//// Created by apple on 14-7-18.// Copyright (c) 2014年 apple. All rights reserved.//#import "ViewContr...
分类:
其他好文 时间:
2014-07-22 22:52:14
阅读次数:
229
#import "ViewController.h"#import @interface ViewController (){ AVAudioPlayer *play; int index; NSArray *audiolist; NSMutableArray *imagel...
分类:
其他好文 时间:
2014-07-22 00:38:36
阅读次数:
241
Warning: Attempt to present * on * whose view is not in the window hierarchy!
出现这样的警告的原因是:ios 不允许在某个viewController的viewDidLoad方法中去呈现其他的viewController,你如果想要的是XXviewController显示之后马上呈现YY的话,可以在viewDidA...
#import "ViewController.h"#import "FMDB.h"@interface ViewController ()- (IBAction)insert;- (IBAction)update;- (IBAction)delete;- (IBAction)select;@pro...
分类:
数据库 时间:
2014-07-20 23:00:11
阅读次数:
455
原文地址:IOS6屏幕旋转详解(自动旋转、手动旋转、兼容IOS6之前系统)作者:wzyfly在iOS6之前的版本中,通常使用shouldAutorotateToInterfaceOrientation来单独控制某个UIViewController的方向,需要哪个viewController支持旋转,...
分类:
移动开发 时间:
2014-07-19 15:29:25
阅读次数:
331
// Copyright (c) 2014年 戴维营教育. All rights reserved.#import "ViewController.h"#import @interface ViewController (){ AVAudioPlayer *player;// 建立一个对象 NSA....
分类:
其他好文 时间:
2014-07-19 11:32:38
阅读次数:
214
//// ViewController.m// 播放器//// Created by apple on 14-7-18.// Copyright (c) 2014年 apple. All rights reserved.//#import "ViewController.h"#import ...
分类:
其他好文 时间:
2014-07-19 09:11:12
阅读次数:
223
1、作为iOS项目中最大的文件,ViewControllers中的代码复用率几乎是最低的2、重量级的View COntroller加大了测试的复杂度。所以关注ViewController的瘦身,把业务逻辑、网络请求、Views的代码移到合适的地方,进而提高代码可读性、降低耦合、提高复用、降低测试难度...
分类:
其他好文 时间:
2014-07-19 09:08:49
阅读次数:
170
```objc#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *action;@end@implementation ...
分类:
其他好文 时间:
2014-07-18 14:26:27
阅读次数:
247
```objc#import "ViewController.h"int threadNumber = 0;int newThingNumber = 0;@interface ViewController ()@end@implementation ViewController- (void)vie...
分类:
其他好文 时间:
2014-07-18 14:23:25
阅读次数:
229