- 博客(18)
- 收藏
- 关注
转载 控制台基本指令
Mac OS X 启用超级用户的方法Root user,又名超级用户,是一个权力最高的Unix 账户,Root 的账户能在整个系统里任何部份进行任何“操作”,包括:拷贝档案、移动/移除档案、执行程序等。所以,通常 Root 的账户都只会指派给高级专业的用户使用。因此,苹果把Root user 隐藏在MacOS X 里。但有时候我们不得不启用Root用户以便于实现某些操作,可以通过以下三
2014-07-20 19:10:30 913
原创 使用AVFoundation框架播放音效
音效文件后缀.aiff//// ViewController.h// AVPlay_text//// Created by Wangjue on 14-7-20.// Copyright (c) 2014年 Wangjue. All rights reserved.//#import #import @inte
2014-07-20 18:50:04 694
原创 写文件数组与字典
//// writeFile.m//// Created by Wangjue on 13-9-8.// Copyright (c) 2013年 Wangjue. All rights reserved.//#import "writeFile.h"@implementation writeFile
2014-07-13 19:02:08 443
原创 加载gif图片
//// UIImageView+GIF.h// DemoGif//// Created by Jue on 13-9-2.// Copyright (c) 2013年 itcast. All rights reserved.//#import @interface UIImageView (GIF)
2014-07-13 18:58:23 549
原创 NSArray打印对象
// NSArray+Log.m//// Created by apple on 13-8-30.// Copyright (c) 2013年 apple. All rights reserved.//#import "NSArray+Log.h"@implementation NSArray (Log)
2014-07-13 18:54:18 554
原创 JOIN与LEFT JOIN
建立表连接《s,b表别名》select * from student s join t_book b on s.book_id = b.id;当student表中有拥有book表中不存在id也可以正常插入select * from student s left join t_book b on s.book_id = b.id;用join可能会使
2013-12-09 00:36:26 479
原创 SVN与GIT的简单介绍
SVN1.checkOut获取项目的完整副本,此工作只需要做一次工作中阶段性工作完成后,Commit,将自己修改的文件,上传到服务器,每天下前 一定要做一次能够编译的提交定期Update项目,从服务器将最新的内容更新到本地,每天上班第一件事情一定要做的事情。坏处:过分依赖网络,不适合分布式开发,异地开发非常痛苦GITFULL从服务器下拉最新的版本COMMit是将修改
2013-12-09 00:32:00 596
原创 UITextView的简单使用_来自Evernote
我们计划创建UITextView,实现UITextViewDelegate协议方法,使用NSLog检查该方法何时被调用。我们还会接触到如何在TextView中限制字符的数量,以及如何使用return键隐藏keyboard。看看如何在你的app中实现这些功能。第一步:创建一个新的Xcode项目运行Xcode,依次点击File > New > Project,然后在左边点击iO
2013-12-09 00:28:01 906
原创 UITextView属性
UITextView1. text: 设置textView中文本_textView.text =@"Now is the time for all good developers to come toserve their country.\n\nNow is the time for all good developers to come toserve their coun
2013-12-09 00:24:21 1615
原创 UIImagePickerController属性与使用
1. sourceType 照片选择控制器的源类型,默认是UIImagePickerControllerSourceTypePhotoLibrary。 UIImagePickerController*imagePicker = [[UIImagePickerController alloc]init]; [imagePickersetSourceType:UIIma
2013-11-29 21:30:49 863
原创 UISlide属性介绍
UISlider属性 1. 1. minimumValue : 当值可以改变时,滑块可以滑动到最小位置的值,默认为0.0_slider.minimumValue =10.0;2. 2. maximumValue : 当值可以改变时,滑块可以滑动到最大位置的值,默认为1.0_slider.maximumValue=100.0;
2013-11-29 19:16:01 1221
原创 数据存储《图片加载的性能优化》来自印象笔记
性能优化(解决tomcat在真机上频繁奔溃) // 使用imageNamed加载的UIImage对象,会被保存在系统缓存中,并且释放的非常缓慢 // 使用此方法适合于加载较小的图像或者频繁使用的图像 // [person setImage:[UIImage imageNamed:@"head1.png"]]; // 而对于较大的图像,或者使用不频繁的图像,应该使用绝对路径的方
2013-11-29 13:33:03 797
原创 学习小结
UIPikerView的属性1. numberOfComponents:返回当前的组数NSInteger num = _pickerView.numberOfComponents;NSLog( @"%d", num);NSInteger numInCp = [_pickerViewnumberOfRowsInComponent:0];NSLog(@"%d",num
2013-11-29 12:14:29 531
原创 学习小结
UITextField属性1.borderStyle设置边框样式,只有设置了才会显示边框样式 text.borderStyle =UITextBorderStyleRoundedRect; typedef enum { UITextBorderStyleNone, UITextBorderStyleLine, UITextBorderStyleB
2013-11-29 12:11:26 622
原创 学习小结
UIImageView属性 1.Image 设置图片,默认显示 UIImageView *_imageView = [[UIImageViewalloc]init]; _imageView.image = [UIImageimageNamed:@"me.png"]; 2.highlightedImage 设置高亮状态下显示的图片_imageView.hi
2013-11-29 12:08:30 550
原创 学习小结_来自我的word文档
UILabel属性1.text:设置标签显示文本。 2.attributedText:设置标签属性文本。 Ios代码 NSString *text = @"first"; NSMutableAttributedString *textLabelStr = [[NSMutableAttributedString alloc] initWithString:text]; [
2013-11-29 12:05:28 772
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人