http://en.wikipedia.org/wiki/VCard示例代码:- (NSString *)getVCardString { UserInfo *userInfo = [PublicInfomation getUserInfo]; NSString *vCardString = [.....
分类:
其他好文 时间:
2014-07-07 11:59:27
阅读次数:
159
1 //创建label UILabel*label=[[UILabelalloc]initWithFrame:CGRectMake(0,0,0,0)]; 2 //文本 NSString*string =@"11111111122222222233333333"; UIFont*font=[U...
分类:
移动开发 时间:
2014-07-07 11:33:02
阅读次数:
232
#pragma mark 加载xml
- (void)loadXML
{
//获取网络数据。
NSLog(@"load xml");
//从web服务器加载数据
NSString *str = @"http://www.baidu.com?format=xml"; //这里是乱写的
//1简历NSURL
NSURL *url = [NSURL UR...
分类:
移动开发 时间:
2014-07-02 16:41:26
阅读次数:
361
NSString,NSMutableString,NSArray,NSMutableArray,NSDictionary,NSMutableDictionary 在 OC 中我们天天都要用,而我们要怎么学习它们呢?
我认为学习这些常用的类,使用类比的方法就行了,只要学会一个类,就能类比另外两个类了..
比如,NSString和NSMutableString的可变与不可变...
分类:
其他好文 时间:
2014-07-02 07:31:08
阅读次数:
149
1、打开数据库 先要获取沙盒的数据库文件名,并创建数据库文件名,定数据库: @property (nonatomic, strong) FMDatabase *db; // 0.获得沙盒中的数据库文件名 NSString *filename = [[NSSearchPathForDirecto...
分类:
数据库 时间:
2014-07-02 00:44:21
阅读次数:
310
试过ObjC的regkit这个框架。也用过内置的正则表达式验证。最后发现有个非常简单的方法就可以做到验证正则表达式。那就是NSPredicte这个类提供的方法。这里有验证邮箱地址的正则为例:NSString *emailRegEx = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-...
分类:
其他好文 时间:
2014-07-01 22:34:15
阅读次数:
237
调用方法
[object method];
[object methodWithInput:input];
output = [object methodWithOutput];
output = [object methodWithInputAndOutput:input];
id myObject = [NSString string];
NSString* myString = ...
分类:
其他好文 时间:
2014-07-01 09:26:03
阅读次数:
177
一个显示日期的工具类
.h文件
#import
@interface TimeUtil : NSObject
+ (NSString*)getTimeStr1:(long long)time;
+(NSString*) getTimeStrStyle1:(long long)time;
+ (NSString*)getTimeStr1Short:(long long)time;
...
分类:
其他好文 时间:
2014-07-01 08:21:52
阅读次数:
266
- (void)CallOtherPartWithTelNumber:(NSString *)telNumber andType:(NSInteger)type{ switch (type) { case 1: // 可以返...
分类:
其他好文 时间:
2014-06-30 22:09:43
阅读次数:
257
1、使用sqlite数据库,需要首先在系统框架上添加libsqlite3.dylib,如下2、打开数据库在头文件中加入-db成员变量: { sqlite3 * _db; // db代表整个数据库,是数据库实例 } // 1、获取沙盒中的数据库文件名 NSString * fi...
分类:
数据库 时间:
2014-06-30 14:38:58
阅读次数:
301