自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(28)
  • 收藏
  • 关注

转载 ios开发审核相关

1.苹果技术支持电话 +1 (408) 974-4897 (美国iTunes团队,英文支持) 4006701855 (大陆开发技术支持,可中文支持) 2.关于加急审核,虽然非必要尽量不要加急审核,加急也不一定会同意,但是亲测加急次数是没有次数限制的,只要理由足够充分(理由一定要充分!这...

2015-08-07 09:43:00 106

转载 ios数字格式化为每隔三位用逗号隔开

直接上码: // // NSNumber+FlickerNumber.h // StoneMoney // // Created by 陈小东 on 15/6/16. // Copyright (c) 2015年 _____stone_chenxiaodong_____. ...

2015-06-16 16:31:00 134

转载 iOS数字格式化为每隔三位用逗号隔开

//方案1 - (NSString*)localizedStringFromNumber{ if(![selfisKindOfClass:[NSStringclass]]){ returnself; } floatoldf...

2015-04-09 15:00:00 193

转载 自定义navigationItem后手势返回被禁用处理

由于自定义navigationItem后,原先默认的华东pop失效,解决办法: 1设置delegate 最好重写UINavigationController <UINavigationControllerDelegate,UIGestureRecognizerDelegate&g...

2015-04-08 16:03:00 110

转载 iOS NSString 转HEX(c)

#define HEXCOLOR(c) [UIColor colorWithRed:((c>>16)&0xFF)/255.0 green:((c>>8)&0xFF)/255.0 blue:(c&...

2015-02-09 16:21:00 99

转载 AFNetworkReachabilityManager检查网络状态

1、开启监听 [[AFNetworkReachabilityManager sharedManager] startMonitoring]; 2、[[AFNetworkReachabilityManager sharedManager] setReachabilityStatusC...

2015-02-04 09:06:00 164

转载 ios8定位问题(建议CLLocationManager 和MKMapView 结合使用)

1.在info.plist中添加keyNSLocationWhenInUseUsageDescription、NSLocationAlwaysUsageDescription。 2.CLLocationManager 切记定义成成员变量、或者属性,否则导致不弹出系统提示打开定位提示框 3...

2015-02-02 13:53:00 140

转载 UITextField限制输入字数高亮状态下输入框内真实类容与textFiled(解决中文输入问题)...

不多说,坑爹的玩意,直接上代码: static const NSInteger kMaxLength = 10; 1.[_textField addTarget:self action:@selector(textFieldChange) forControlEvents:UICont...

2015-01-27 10:22:00 97

转载 iOS Alipay SDK 官方下载地址(尼玛隐藏太深了)

https://b.alipay.com/order/productDetail.htm?productId=2013080604609654&tabId=4#ps-tabinfo-hash ...

2015-01-22 09:40:00 344

转载 xcode 相关

/Users/chenxiaodong/Library/Developer/XCode/DerivedData/ //xcode 编译缓存 路径 ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins // xcode 插件...

2014-12-02 14:05:00 70

转载 apps被拒绝的各种理由以及翻译

http://my.oschina.net/u/1245365/blog/196257 转载于:https://my.oschina.net/751547752/blog/332881...

2014-10-16 15:16:00 90

转载 Apple 官方开发demo

http://developer.apple.com/iphone/library/samplecode/Reachability/Reachability.ziphttp://developer.apple.com/iphone/library/samplecode/avTouch/avTo...

2014-10-16 08:53:00 114

转载 等比压缩图片

+ (UIImage *)thumbnailWithImageWithoutScale:(UIImage *)image size:(CGSize)asize { UIImage *newimage =...

2014-10-08 10:46:00 74

转载 判读字符串中是否包含(检查网址)

if([url rangeOfString:@"http://"].location == NSNotFound) url = [url stringByAppendingFormat:@"http://%@",url]; ...

2014-10-08 10:11:00 397

转载 RSA加密

rsa加密的解决方案都是需要证书或者文件的, 对于服务端提供了公钥,没有给证书或者pem文件的rsa加密:把公钥和你需要编码得Nsstring都转换成NSData用rsa公钥 编码你所需要编码得内容 最后转换成Nsstring //库SecKeyWrapper //RSA加密 - (...

2014-10-08 09:36:00 188

转载 ios app 发布(xcode6)

1,准备好distribution证书 2,archive submit到iTunesConnect, 3,保证app version 和 提交的 version一致 (Privacy Policy UR 现在 这个一定要有 否则 肯定会 17.5 悲剧的...) 4,submit ...

2014-09-30 10:54:00 58

转载 ios8 创建plist

+ (NSString *)getFilePath { NSString *path = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) objectAtIndex:0]...

2014-09-23 09:23:00 59

转载 iOS8消息推送处理

#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscen...

2014-09-23 09:10:00 65

转载 NSPredicate判断手机号、邮箱、qq、重名、

#import <Foundation/Foundation.h> @interface NSString (InputCheck) - (BOOL) validateEmail; - (BOOL) validateMobile; - (BOOL) validateq...

2014-07-14 22:13:00 108

转载 UITextField

#import <UIKit/UIKit.h> @interface GCTextField : UITextField @property (nonatomic,copy,readonly) NSString * kvoText; @end //---------...

2014-07-14 22:10:00 53

转载 UILable

// UILabel+Attributed.h #import <UIKit/UIKit.h> @interface UILabel (Attributed) - (void)text:(NSString *)str color:(UIColor *)color...

2014-07-14 22:07:00 56

转载 cocoapods

原文:http://code4app.com/article/cocoapods-install-usage 以下是个人使用心得: 终端运行:1$gemsources--removehttps://rubygems.org/2$gemsources-a//反正...

2014-07-14 22:01:00 48

转载 图片拉伸

UIButton *readbtn = [UIButton buttonWithType:UIButtonTypeCustom]; //--------------------------------------------------------------- UIIma...

2014-06-10 09:58:00 61

转载 UIView设置背景图片

1 .可以加UIImageView在UIView上 2.通过图片生成UIColor(UIImageView不能直接添加图片背景) 2.1,self.view.backgroundColor=[UIColorcolorWithPatternImage:image]; //生成color...

2014-05-22 13:10:00 80

转载 陆续推荐一些好的博客地址,以及其他iOS学习的地址,也欢迎来访者留下足迹...

http://blog.csdn.net/marujunyy/article/category/1317253/ http://www.cocoachina.com/ios/20141229/10783.html (ios开发的一些技巧) stackoverflow、segme...

2014-05-09 13:44:00 70

转载 iOS 获取已连接的wifi info

1,#import <SystemConfiguration/CaptiveNetwork.h> 2, +(id)fetchSSIDInfo{ NSArray*ifs=(__bridge_transferid)CNCopySupportedInterfa...

2014-05-09 12:01:00 127

转载 AFNetworking2.0 get/post请求、使用自签证书访问HTTPS

1,必备系统库CFNetwork.framework、Security.framework、SystemConfiguration.framework、MobileCoreServices.framework 2,导入AFNetworking 当然UIKit+AFNetworking这个还...

2014-05-09 11:49:00 78

转载 iOS--蓝牙通讯/blutooth

1,导入 2,#import <CoreBluetooth/CoreBluetooth.h> 3,协议<CBCentralManagerDelegate,CBPeripheralDelegate> 4,CBCentralManager *cm = [[CBCent...

2014-05-08 15:59:00 99

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除