上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 1,PortraitViewController 不旋转,保持竖屏//iOS 5- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation{ return (toInterfaceOrientation == UIInterfaceOrientationPortrait);}//iOS 6- (BOOL)shouldAutorotate{ return NO;}- (NSUInteger)supportedInterfaceOrientations{ return 阅读全文
posted @ 2013-07-03 18:09 jason.android 阅读(313) 评论(0) 推荐(0) 编辑
摘要: ELYTAppDelegate.m#import "ELYTAppDelegate.h"@implementation ELYTAppDelegate@synthesize window = _window;- (void)dealloc{ [_window release]; [super dealloc];}- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ self.window = [[[UIWind 阅读全文
posted @ 2013-06-07 15:17 jason.android 阅读(153) 评论(0) 推荐(0) 编辑
摘要: UserController.h#import @interface UserController : NSObject { int _id;}@property (nonatomic,assign) int _id;- (void) display;+ (id) defaultUserController:(int) _id;@endUserController.m#import "UserController.h"static UserController* singleInstance = nil;@implementation UserController@synt 阅读全文
posted @ 2013-06-07 14:52 jason.android 阅读(132) 评论(0) 推荐(0) 编辑
摘要: main.m#import #import "Person.h"int main(int argc, const char * argv[]){ @autoreleasepool { //-----------第1种归档方式--------- //1.使用NSKeyedArchiver 归档对象到文件(对象序列化,持久化) NSArray* arrays = [[NSArray alloc]initWithObjects:@"111",@"222", nil]; NSStrin... 阅读全文
posted @ 2013-06-07 13:55 jason.android 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]){ @autoreleasepool { NSMutableArray* arr1 = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5", nil]; //使用retain得到对象所有权,arr1的引用计数加1后为2 NSMutableArray* arr2 = [arr1 retain]; NSLog(@"arr 阅读全文
posted @ 2013-06-07 11:59 jason.android 阅读(117) 评论(0) 推荐(0) 编辑
摘要: FileTools.h#import //文件工具类@interface FileTools : NSObject//复制文件+ (void) copyFileWithSrcFile:(NSString*) srcFilePath withBakFile:(NSString*) bakFilePath;//获取文件的大小+ (NSNumber*) fileLengthWithFile:(NSString*) filePath;@endFileTools.m#import "FileTools.h"@implementation FileTools//复制文件+ (void) 阅读全文
posted @ 2013-06-06 18:57 jason.android 阅读(203) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]){ @autoreleasepool { //基本数据类型变量的定义 int age = 18; float f = 3.15F; double d = 4.53234235; char c = 'A'; //打印基本数据类型变量的值 NSLog(@"age=%d",age); NSLog(@"f=%.4f",f); NSLog(@"d=%... 阅读全文
posted @ 2013-06-05 11:20 jason.android 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 原帖:http://www.eoeandroid.com/thread-181207-1-1.html本帖最后由 yanghe123 于 2012-6-27 12:22 编辑1、Android AChartEngine画柱状图实例推荐http://www.eoeandroid.com/thread-98459-1-1.html2、android图表引擎AchartEngine制作柱图http://www.eoeandroid.com/thread-181311-1-1.html========================================帖子内容=============== 阅读全文
posted @ 2013-05-29 11:52 jason.android 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 原帖:http://www.eoeandroid.com/thread-272453-1-1.htmlAndroid经典的开源项目其实非常多,但是国内的博客总是拿着N年前的一篇复制来复制去,实在是不利于新手学习。今天爬爬把自己熟悉的一些开源项目整理起来,希望能对Android开发同学们有所帮助。另外,如果你有比较好的项目推荐,也烦请在评论里分享出来,我会定期更新博客内容。项目篇:Apollo音乐播放器:就一个播放器,但是实现的很好oschina客户端:oschina网站的客户端哦,wp版,iOS版都有开源xabber实时聊天工具(基于xmpp协议):不评价了,反正算是同类中比较好的了四次元新浪 阅读全文
posted @ 2013-05-29 11:38 jason.android 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 声明:eoe文章著作权属于作者,受法律保护,转载时请务必以超链接形式附带如下信息原文作者:lyj724929676原文地址:http://my.eoe.cn/761385/archive/4226.htmlAndroid提供了Camera来控制拍照,步骤如下:(1)调用Camera的open()方法打开相机。(2)调用Camera的getParameters()获取拍照参数,该方法返回一个Cmera.Parameters对象。(3)调用Camera.Parameters对象对照相的参数进行设置。(4)调用Camera的setParameters(),并将Camera.Parameters对象作 阅读全文
posted @ 2013-05-29 11:06 jason.android 阅读(999) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页