NSString*str1=@"canyou\nspeakEnglish";NSString*str=@"\n";//在str1这个字符串中搜索\n,判断有没有if([str1rangeOfString:str].location!=NSNotFound){NSLog(@"这个字符串中有\n");}...
分类:
移动开发 时间:
2014-07-22 22:40:35
阅读次数:
258
属性定义@interface Nothin : NSObject@property NSString *prop;@end访问属性 Nothin *nothin = [Nothin new]; //get [nothinprop]; //set [nothin setProp: @"Nothin"]...
分类:
其他好文 时间:
2014-07-22 08:13:34
阅读次数:
302
概念:NSString 类定义了管理不可变字符串的程序接口。一个不可变的字符串就是一旦定以后随后就不可以在被改变。NSString 代表一组Unicode数组,换句话说,一个文本字符串。NSString的可变子类是NSMutableString。NSString有两个原始的方法:length和cha...
分类:
其他好文 时间:
2014-07-22 00:25:36
阅读次数:
188
网络请求包括GET.POST两种方式,其步骤为:1>获取URL。 2>获取请求。 3>创建链接。 4>返回数据(代理)。
1>获取URL。
NSString *urlStr=@"http://api.zbw.vc/api/vip/GetPhonePadTagMsg";
//当参数为中文时,用UTF8编码
//urlStr=[urlStr stringByAddingPercentEscape...
分类:
移动开发 时间:
2014-07-22 00:09:36
阅读次数:
262
#import
int main(int argc, const char * argv[])
{
@autoreleasepool {
NSString *s1;
s1=[NSString stringWithFormat:@"%d + %d = %d",2,3,2+3];
NSLog(@"%@",s1);
NSLog...
分类:
其他好文 时间:
2014-07-21 22:15:38
阅读次数:
210
在KVC编程方式中,无论调用setValue:forKey:方法,还是调用valueForKey:方法,都是通过NSString对象来指定被操作属性,其中forKey:标签用户传入属性名的。 对于setValue:属性值forKey@“name”;代码,底层的执行机制如下。 (1)程序优先考...
分类:
移动开发 时间:
2014-07-21 14:28:31
阅读次数:
204
/*
?XCode?LLVM?XXX?-?Preprocessing中Debug会添加?DEBUG=1?标志
?*/
#ifdef?DEBUG
#define?NSLog(FORMAT,?...)?fprintf(stderr,"%s:%d\t%s\n",[[[NSString?stringWithUTF8String:__FILE__]?lastP...
分类:
移动开发 时间:
2014-07-21 10:34:03
阅读次数:
244
#import <Foundation/Foundation.h> @interface NSString (InputCheck) - (BOOL) validateEmail; - (BOOL) validateMobile; - (BOOL) validateqq; - (BOOL) validateRealName; - (BOOL) validateNickName; - (BOO...
分类:
移动开发 时间:
2014-07-21 10:27:02
阅读次数:
211
在上班之余学习IOS已经有三个多月了,因为基础有些薄弱从OC的基本语法开始学习的,相继看了青柚子和红柚子的书,现在在看编程实战,趁这个机会好好的总结一下: 1.命名约定 对象类型和名称一致,以免混淆 -(void) setURL:(NSString *)URL;//错误的命名方法//更改为-(voi...
分类:
移动开发 时间:
2014-07-21 08:29:58
阅读次数:
300
//一般的字符串的解析 NSString *string = @"One,Two,Three,Four"; NSLog(@"string:%@",string); NSArray *array = [string componentsSeparatedByString:@","]; NSLo...
分类:
其他好文 时间:
2014-07-20 21:35:54
阅读次数:
200