数组也分成可变和不可变,这个和NSString一样,初始化的方法也类似,对元素的操作也类似,具体如下。...
分类:
其他好文 时间:
2014-09-05 14:24:11
阅读次数:
138
#import"AddressBookNavigationController.h"@interfaceAddressBookNavigationController()@end@implementationAddressBookNavigationController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{self=[superinitWithNibName:nibNameOrNilbundle..
分类:
其他好文 时间:
2014-09-05 03:25:41
阅读次数:
198
//从plist文件中读取数据-(void)readDataFromPlist{//1.先获取文件路径NSString*filePath=[[NSBundlemainBundle]pathForResource:@"Book"ofType:@"plist"];//2.根据路径初始化字典对象self.dic=[NSMutableDictionarydictionaryWithContentsOfFile:filePath];//将不可边字典变成..
分类:
其他好文 时间:
2014-09-05 03:25:11
阅读次数:
155
因为项目需要HMAC_SHA1加密,找了很多都不符合要求,最后在stackoverflow的一个问答中找到了所要的。源码如下:注意:需要包含着3个头文件#include #include #include "base64.h"+ (NSString *)hmacsha1:(NSString *).....
分类:
移动开发 时间:
2014-09-04 23:34:40
阅读次数:
1064
UIWebView*callWebview =[[UIWebView alloc] init];
NSString *telUrl = [NSString stringWithFormat:@"tel:%@",phone];
NSURL *telURL =[NSURL URLWithString:telUrl];
[callWebview loadRequest:[NSURLRequest req...
分类:
移动开发 时间:
2014-09-04 20:58:20
阅读次数:
215
IOS程序访问HTTP时,其中可能有中文、特殊符号&%和空格,这时必须进行转译才能正确访问。- (NSString *)encodeToPercentEscapeString: (NSString *) input{ NSString *outputStr = (NSString *) ...
分类:
移动开发 时间:
2014-09-04 20:47:10
阅读次数:
205
+ (NSString*)deviceString
{
// 需要#import "sys/utsname.h"
struct utsname systemInfo;
uname(&systemInfo);
NSString *deviceString = [NSString stringWithCString:systemInfo.m...
分类:
其他好文 时间:
2014-09-04 19:08:40
阅读次数:
219
1.密码判断
至少包含数字、字母(区分大小写)、符号中的2种
NSString *regex = @"^(?![A-Z]+$)(?![a-z]+$)(?!\\d+$)(?![\\W_]+$)\\S+$";
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"self matches %@",re...
分类:
其他好文 时间:
2014-09-04 19:05:50
阅读次数:
210
一、点语法1.OC中点语法是方便从事别的语言开发的程序员迅速的转到OC开发当中,先看下面这个例子: 1 // 声明一个Person类 2 @interface Person : NSObject 3 { 4 int _age; 5 NSString *_name; 6 } 7 - (...
分类:
其他好文 时间:
2014-09-04 18:31:09
阅读次数:
165
一、将字符串时间转化为NSDate,并打印1 NSString *string = @"2013-08-12 20:13:43";2 3 NSDateFormatter *formatter = [[NSDateFormatter alloc] in...
分类:
其他好文 时间:
2014-09-04 16:46:39
阅读次数:
177