在头文件中声明:@property (nonatomic,strong) NSString * str;在oc中,这一行代码表示一个名为str的属性。在实现文件.m中声明:@synthesize str;在oc中类中声明了这一句话就会自动生成两个方法(生成属性的getter和setter),一个属性...
分类:
其他好文 时间:
2014-07-19 20:29:50
阅读次数:
190
#define DEFAULT_VOID_COLOR [UIColor whiteColor]+ (UIColor *)colorWithHexString:(NSString *)stringToConvert
{
NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet w...
分类:
移动开发 时间:
2014-07-19 02:17:16
阅读次数:
214
两个APP之间的跳转是通过[[UIApplication sharedApplication] openURL:url]这种方式来实现的。1.首先设置第一个APP的url地址2.接着设置第二个APP的url地址3.需要跳转的时候NSString *urlString = [NSString stri...
分类:
移动开发 时间:
2014-07-18 23:05:28
阅读次数:
23673
.h文件
/**
* MD5加密工具
*/
#import
@interface MD5Tools : NSObject
/**
* MD5加密
*/
+(NSString *)md5:(NSString *)value;
/**
* 密码MD5+手机号后4位 ,在作MD5加密
*/
+(NSString *)md5Psd:(NSString *)password...
分类:
其他好文 时间:
2014-07-18 22:18:27
阅读次数:
234
首先在本地初始化一个数据库- (void)initDatabase{ //最终数据库路径 NSString *dbPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/database.db"]; NSFil...
分类:
其他好文 时间:
2014-07-18 19:12:27
阅读次数:
245
-(bool)checkDevice:(NSString*)name
{
NSString* deviceType = [UIDevice currentDevice].model;
NSLog(@"deviceType = %@", deviceType);
NSRange range = [deviceType rangeOfString:name];
return range.l...
分类:
移动开发 时间:
2014-07-18 16:37:54
阅读次数:
229
NSString* localPath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"jpg"];
NSURL* fileUrl = [NSURL fileURLWithPath:localPath];
CIImage* image = [CIImage imageWithContentsOfURL:fileUrl];...
分类:
移动开发 时间:
2014-07-18 16:31:23
阅读次数:
408
FMDatabase 的使用方法- (NSString*) getPath { NSArray* paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) ; return[[pathso...
分类:
移动开发 时间:
2014-07-18 10:08:04
阅读次数:
342
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string;{ //string就是此时输入的那个字符text...
分类:
其他好文 时间:
2014-07-17 00:50:17
阅读次数:
354
#import "MJmainViewController.h"@interface MJmainViewController ()@end@implementation MJmainViewController- (id)initWithNibName:(NSString *)nibNameOrN...
分类:
其他好文 时间:
2014-07-16 16:13:25
阅读次数:
243