iOS开发常用的代码(最基础)

%c一个单一的字符

%d一个十进制整数

%i一个整数

%e, %f, %g一个浮点数

%o一个八进制数

%s一个字符串

%x一个十六进制数

%p一个指针

%n一个等于读取字符数量的整数

%u一个无符号整数

%[]一个字符集

%%一个精度符号

//一、NSString

/*----------------创建字符串的方法----------------*/

1、创建常量字符串。

NSString *astring = @"This is a String!";

2、创建空字符串,给予赋值。

NSString *astring = [[NSString alloc] init];

astring = @"This is a String!";

NSLog(@"astring:%@",astring);

[astring release];

3、在以上方法中,提升速度:initWithString方法

NSString *astring = [[NSString alloc] initWithString:@"This is a String!"];

NSLog(@"astring:%@",astring);

[astring release];

4、用标准c创建字符串:initWithCString方法

char *Cstring = "This is a String!";

NSString *astring = [[NSString alloc] initWithCString:Cstring];

NSLog(@"astring:%@",astring);

[astring release];

5、创建格式化字符串:占位符(由一个%加一个字符组成)

int i = 1;

int j = 2;

NSString *astring = [[NSString alloc]

initWithString:[NSString stringWithFormat:@"%d.This is %i string!",i,j]];

NSLog(@"astring:%@",astring);

[astring release];

6、创建临时字符串

NSString *astring;

astring = [NSString stringWithCString:"This is a temporary string"];

NSLog(@"astring:%@",astring);

/*----------------从文件读取字符串:initWithContentsOfFile方法----------------*/

NSString *path = @"astring.text";

NSString *astring = [[NSString alloc] initWithContentsOfFile:path];

NSLog(@"astring:%@",astring);

[astring release];

/*----------------写字符串到文件:writeToFile方法----------------*/

NSString *astring = [[NSString alloc] initWithString:@"This is a String!"];

NSLog(@"astring:%@",astring);

NSString *path = @"astring.text";

[astring writeToFile: path atomically: YES];

[astring release];

/*----------------比较两个字符串----------------*/

用C比较:strcmp函数

char string1[] = "string!";

char string2[] = "string!";

if(strcmp(string1, string2) = = 0)

{

NSLog(@"1");

}

isEqualToString方法

NSString *astring01 = @"This is a String!";

NSString *astring02 = @"This is a String!";

BOOL result = [astring01 isEqualToString:astring02];

NSLog(@"result:%d",result);

compare方法(comparer返回的三种值)

NSString *astring01 = @"This is a String!";

NSString *astring02 = @"This is a String!";

BOOL result = [astring01 compare:astring02] = = NSOrderedSame;

NSLog(@"result:%d",result);

NSOrderedSame判断两者内容是否相同

NSString *astring01 = @"This is a String!";

NSString *astring02 = @"this is a String!";

BOOL result = [astring01 compare:astring02] = = NSOrderedAscending;

NSLog(@"result:%d",result);

//NSOrderedAscending判断两对象值的大小(按字母顺序进行比较,astring02大于astring01为真)

NSString *astring01 = @"this is a String!";

NSString *astring02 = @"This is a String!";

BOOL result = [astring01 compare:astring02] = = NSOrderedDescending;

NSLog(@"result:%d",result);

//NSOrderedDescending判断两对象值的大小(按字母顺序进行比较,astring02小于astring01为真)

不考虑大 小写比较字符串1

NSString *astring01 = @"this is a String!";

NSString *astring02 = @"This is a String!";

BOOL result = [astring01 caseInsensitiveCompare:astring02] = = NSOrderedSame;

NSLog(@"result:%d",result);

//NSOrderedDescending判断两对象值的大小(按字母顺序进行比较,astring02小于astring01为 真)

不考虑大小写比较字符串2

NSString *astring01 = @"this is a String!";

NSString *astring02 = @"This is a String!";

BOOL result = [astring01 compare:astring02

options:NSCaseInsensitiveSearch | NSNumericSearch] = = NSOrderedSame;

NSLog(@"result:%d",result);

//NSCaseInsensitiveSearch:不区分大小写比较NSLiteralSearch:进行完全比较,区分大小写NSNumericSearch:比较字符串的字符个数,而不是字符值。

/*----------------改变字符串的大小写----------------*/

NSString *string1 = @"A String";

NSString *string2 = @"String";

NSLog(@"string1:%@",[string1 uppercaseString]);//大写

NSLog(@"string2:%@",[string2 lowercaseString]);//小写

NSLog(@"string2:%@",[string2 capitalizedString]);//首字母大小

/*----------------在串中搜索子串----------------*/

NSString *string1 = @"This is a string";

NSString *string2 = @"string";

NSRange range = [string1 rangeOfString:string2];

int location = range.location;

int leight = range.length;

NSString *astring = [[NSString alloc]

initWithString:[NSString stringWithFormat:@"Location:%i,Leight:%i"

,location,leight]];

NSLog(@"astring:%@",astring);

[astring release];

/*----------------抽取子串----------------*/

-substringToIndex:从字符串的开头一直截取到指定的位置,但不包括该位置的字符

NSString *string1 = @"This is a string";

NSString *string2 = [string1 substringToIndex:3];

NSLog(@"string2:%@",string2);

-substringFromIndex:以指定位置开始(包括指定位置的字符),并包括之后的全部字符

NSString *string1 = @"This is a string";

NSString *string2 = [string1 substringFromIndex:3];

NSLog(@"string2:%@",string2);

-substringWithRange: //按照所给出的位置,长度,任意地从字符串中截取子串

NSString *string1 = @"This is a string";

NSString *string2 = [string1 substringWithRange:NSMakeRange(0, 4)];

NSLog(@"string2:%@",string2);

const char *fieldValue = [valuecStringUsingEncoding:NSUTF8StringEncoding];

const char *fieldValue = [value UTF8String];

NSString转NSData

NSString* str= @"kilonet";

NSData* data=[str dataUsingEncoding:NSUTF8StringEncoding];

Date format用法:

-(NSString *) getDay:(NSDate *) d

{

NSString *s ;

NSDateFormatter *format = [[NSDateFormatter alloc] init];

[format setDateFormat:@"YYYY/MM/dd hh:mm:ss"];

s = [format stringFromDate:d];

[format release];

return s;

}

各地时区获取:

NSDate *nowDate = [NSDate new];

NSDateFormatter *formatter=[[NSDateFormatter alloc] init];

[formattersetDateFormat:@"yyyy/MM/dd HH:mm:ss"];

//根据时区名字获取当前时间,如果该时区不存在,默认获取系统当前时区的时间

//NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Europe/Andorra"];

//[formatter setTimeZone:timeZone];

//获取所有的时区名字

NSArray *array = [NSTimeZone knownTimeZoneNames];

//NSLog(@"array:%@",array);

//for循环

//for(int i=0;i<[array count];i++)

//{

//NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:[array objectAtIndex:i]];

//[formatter setTimeZone:timeZone];

//NSString *locationTime = [formatter stringFromDate:nowDate];

//NSLog(@"时区名字:%@:时区当前时间: %@",[array objectAtIndex:i],locationTime);

////NSLog(@"timezone name is:%@",[array objectAtIndex:i]);

//}

//快速枚举法

for(NSString *timeZoneName in array){

[formatter setTimeZone:[NSTimeZone timeZoneWithName:timeZoneName]];

NSLog(@"%@,%@",timeZoneName,[formatter stringFromDate:nowDate]);

}

[formatter release];

[nowDate release];

NSCalendar用法:

-(NSString *) getWeek:(NSDate *) d {

NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

unsigned units = NSYearCalendarUnit | NSMonthCalendarUnit |NSDayCalendarUnit | NSWeekdayCalendarUnit;

NSDateComponents *components = [calendar components:units fromDate:d];

[calendar release];

switch ([components weekday]) {

case 2:

return @"Monday";

break;

case 3:

return @"Tuesday";

break;

case 4:

return @"Wednesday";

break;

case 5:

return @"Thursday";

break;

case 6:

return@"Friday";

break;

case 7:

return@"Saturday";

break;

case 1:

return @"Sunday";

break;

default:

return @"No Week";

break;

}

//用components,我们可以读取其他更多的数据。

}

4.用Get方式读取网络数据:

将网络数读取为字符串

- (NSString *) getDataByURL:(NSString *) url {

return [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]] encoding:NSUTF8StringEncoding];

}

//读取网络图片

- (UIImage *) getImageByURL:(NSString *) url {

return [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]]];

}

多线程

[NSThread detachNewThreadSelector:@selector(scheduleTask) toTarget:self withObject:nil];

-(void) scheduleTask {

//create a pool

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

//release the pool;

[pool release];

}

//如果有参数,则这么使用:

[NSThread detachNewThreadSelector:@selector(scheduleTask:) toTarget:self withObject:[NSDate date]];

-(void) scheduleTask:(NSDate *) mdate {

//create a pool

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

//release the pool;

[pool release];

}

//注意selector里有冒号。

//在线程里运行主线程里的方法

[self performSelectorOnMainThread:@selector(moveToMain) withObject:nil waitUntilDone:FALSE];

6.定时器NSTimer用法:

代码

//一个可以自动关闭的Alert窗口

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil

message:[@"一个可以自动关闭的Alert窗口"

delegate:nil

cancelButtonTitle:nil //NSLocalizedString(@"OK", @"OK")//取消任何按钮

otherButtonTitles:nil];

//[alert setBounds:CGRectMake

(alert.bounds.origin.x, alert.bounds.origin.y,

alert.bounds.size.width, alert.bounds.size.height+30.0)];

[alert show];

UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

// Adjust the indicator so it is up a few pixels from the bottom of the alert

indicator.center = CGPointMake(alert.bounds.size.width/2,alert.bounds.size.height-40.0);

[indicator startAnimating];

[alert insertSubview:indicator atIndex:0];

[indicator release];

[NSTimer scheduledTimerWithTimeInterval:3.0f

target:self

selector:@selector(dismissAlert:)

userInfo:[NSDictionary dictionaryWithObjectsAndKeys:alert,

@"alert", @"testing ", @"key" ,nil]//如果不用传递参数,那么可以将此项设置为nil.

repeats:NO];

NSLog(@"release alert");

[alert release];

-(void) dismissAlert:(NSTimer *)timer{

NSLog(@"release timer");

NSLog([[timer userInfo]objectForKey:@"key"]);

UIAlertView *alert = [[timer userInfo]objectForKey:@"alert"];

[alert dismissWithClickedButtonIndex:0 animated:YES];

}

定时器停止使用:

[timer invalidate];

timer = nil;

7.用户缺省值NSUserDefaults读取:

//得到用户缺省值

NSUserDefaults *defs = [NSUserDefaults standardUserDefaults];

//在缺省值中找到AppleLanguages,返回值是一个数组

NSArray* languages = [defs objectForKey:@"AppleLanguages"];

NSLog(@"all language语言is %@", languages);

//在得到的数组中的第一个项就是用户的首选语言了

NSLog(@"首选语言is %@",[languages objectAtIndex:0]);

//get the language & country code

NSLocale *currentLocale = [NSLocale currentLocale];

NSLog(@"Language Code is %@", [currentLocale objectForKey:NSLocaleLanguageCode]);

NSLog(@"Country Code is %@", [currentLocale objectForKey:NSLocaleCountryCode

8. View之间切换的动态效果设置:

SettingsController *settings = [[SettingsController alloc]initWithNibName:@"SettingsView" bundle:nil];

settings.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;//水平翻转

[self presentModalViewController:settings animated:YES];

[settings release];

9.NSScrollView滑动用法:

-(void) scrollViewDidScroll:(UIScrollView *)scrollView{

NSLog(@"正在滑动中...");

}

//用户直接滑动NSScrollView,可以看到滑动条

-(void) scrollViewDidEndDecelerating:(UIScrollView *)scrollView {

}

//通过其他控件触发NSScrollView滑动,看不到滑动条

- (void) scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView {

}

11.键盘处理系列

//set the UIKeyboard to switch to a different text field when you press return

//switch textField to the name of your textfield

[textField becomeFirstResponder];

srandom(time(NULL)); //随机数种子

id d = random(); //随机数

4. iPhone的系统目录:

//得到Document目录:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *documentsDirectory = [paths objectAtIndex:0];

//得到temp临时目录:

NSString *tempPath = NSTemporaryDirectory();

//得到目录上的文件地址:

NSString *文件地址= [目录地址stringByAppendingPathComponent:@"文件名.扩展名"];

5.状态栏显示Indicator:

[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;

6.app Icon显示数字:

- (void)applicationDidEnterBackground:(UIApplication *)application{

[[UIApplication sharedApplication] setApplicationIconBadgeNumber:5];

}

7.sqlite保存地址:

代码

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *thePath = [paths objectAtIndex:0];

NSString *filePath = [thePath stringByAppendingPathComponent:@"kilonet1.sqlite"];

NSString *dbPath = [[[NSBundle mainBundle] resourcePath]

stringByAppendingPathComponent:@"kilonet2.sqlite"];

8.Application退出:exit(0);

9. AlertView,ActionSheet的cancelButton点击事件:

代码

-(void) actionSheet :(UIActionSheet *) actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {

NSLog(@"cancel actionSheet........");

//当用户按下cancel按钮

if( buttonIndex == [actionSheet cancelButtonIndex]) {

exit(0);

}

////当用户按下destructive按钮

//if( buttonIndex == [actionSheet destructiveButtonIndex]) {

//// DoSomething here.

//}

}

- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex {

NSLog(@"cancel alertView........");

if (buttonIndex == [alertView cancelButtonIndex]) {

exit(0);

}

}

10.给Window设置全局的背景图片:

window.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"coolblack.png"]];

11. UITextField文本框显示及对键盘的控制:

代码

#pragma mark -

#pragma mark UITextFieldDelegate

//控制键盘跳转

- (BOOL)textFieldShouldReturn:(UITextField *)textField {

if (textField == _txtAccount) {

if ([_txtAccount.text length]==0) {

return NO;

}

[_txtPassword becomeFirstResponder];

} else if (textField == _txtPassword) {

[_txtPassword resignFirstResponder];

}

return YES;

}

//输入框背景更换

-(BOOL) textFieldShouldBeginEditing:(UITextField *)textField{

[textField setBackground:[UIImage imageNamed:@"ctext_field_02.png"]];

return YES;

}

-(void) textFieldDidEndEditing:(UITextField *)textField{

[textField setBackground:[UIImage imageNamed:@"ctext_field_01.png"]];

}

12.UITextField文本框前面空白宽度设置以及后面组合按钮设置:

代码

//给文本输入框后面加入空白

_txtAccount.rightView = _btnDropDown;

_txtAccount.rightViewMode =UITextFieldViewModeAlways;

//给文本输入框前面加入空白

CGRect frame = [_txtAccount frame];

frame.size.width = 5;

UIView *leftview = [[UIView alloc] initWithFrame:frame];

_txtAccount.leftViewMode = UITextFieldViewModeAlways;

_txtAccount.leftView = leftview;

13. UIScrollView设置滑动不超出本身范围:

[fcScrollView setBounces:NO];

14.在drawRect里画文字:

UIFont * f = [UIFont systemFontOfSize:20];

[[UIColor darkGrayColor] set];

NSString * text = @"hi \nKiloNet";

[text drawAtPoint:CGPointMake(center.x,center.y) withFont:f];

15. NSArray查找是否存在对象时用indexOfObject,如果不存在则返回为NSNotFound.

16. NString与NSArray之间相互转换:

array = [string componentsSeparatedByString:@","];

string = [[array valueForKey:@"description"] componentsJoinedByString:@","];

17. TabController随意切换tab bar:

[self.tabBarController setSelectedIndex:tabIndex];

或者self.tabBarController.selectedIndex = tabIndex;

或者实现下面的delegate来扑捉tab bar的事件:

代码-(BOOL) tabBarController:(UITabBarController *)tabBarController

shouldSelectViewController:(UIViewController *)viewController

{if ([viewController.tabBarItem.title isEqualToString: NSLocalizedString(@"Logout",nil)])

{[self showLogout];return NO;}return YES;}

18.自定义View之间切换动画:

代码

- (void) pushController: (UIViewController*) controller

withTransition: (UIViewAnimationTransition) transition

{

[UIView beginAnimations:nil context:NULL];

[self pushViewController:controller animated:NO];

[UIView setAnimationDuration:.5];

[UIView setAnimationBeginsFromCurrentState:YES];

[UIView setAnimationTransition:transition forView:self.view cache:YES];

[UIView commitAnimations];

}

CATransition *transition = [CATransition animation];

transition.duration = kAnimationDuration;

transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

transition.type = kCATransitionPush;

transition.subtype = kCATransitionFromTop;

transitioning = YES;

transition.delegate = self;

[self.navigationController.view.layer addAnimation:transition forKey:nil];

self.navigationController.navigationBarHidden = NO;

[self.navigationController pushViewController:tableViewController animated:YES];

20.计算字符串长度:

CGFloat w = [title sizeWithFont:[UIFont fontWithName:@"Arial" size:18]].width;

23.在使用UISearchBar时,将背景色设定为clearColor,或者将translucent设为YES,都不能使背景透明,经过一番研究,发现了一种超级简单和实用的方法:

1

[[searchbar.subviews objectAtIndex:0]removeFromSuperview];

背景完全消除了,只剩下搜索框本身了。

24.图像与缓存:

UIImageView *wallpaper = [[UIImageView alloc] initWithImage:

[UIImage imageNamed:@"icon.png"]]; //会缓存图片

UIImageView *wallpaper = [[UIImageView alloc] initWithImage:

[UIImage imageWithContentsOfFile:@"icon.png"]]; //不会缓存图片

25. iphone-常用的对视图图层(layer)的操作

对图层的操作:

(1.给图层添加背景图片:

myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;

(2.将图层的边框设置为圆脚

myWebView.layer.cornerRadius = 8;

myWebView.layer.masksToBounds = YES;

(3.给图层添加一个有色边框

myWebView.layer.borderWidth = 5;

myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];

将多个字符替换成空

NSCharacterSet *cs = [NSCharacterSet characterSetWithCharactersInString:@"1234567890|"];

NSString *resultstr = [[yourstr componentsSeparatedByCharactersInSet:cs] componentsJoinedByString:@" "];

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容