NSNumber: @() @小括号 或者 NSNumber * num = @3; NSValue * value = @4;NSDictionary :@{} @大括号NSArray :@[] @中括号
分类:
其他好文 时间:
2014-09-24 18:01:07
阅读次数:
163
在做优惠价格的时候需要用到删除线,但是网上的删除线千篇一律,都是大抄小抄,其实苹果的NSAttributedString就可以实现这一点啦。
代码如下:
NSString *oldPrice = @"¥ 12345";
NSUInteger length = [oldPrice length];
NSMutableAttributedString *attri...
分类:
移动开发 时间:
2014-09-24 00:52:05
阅读次数:
417
NSUserDefaults: 用来保存应用程序设置和属性、用户保存的数据。 用户再次打开程序或开机后这些数据仍然存在。 可以存储的数据类型包括: NSData、NSString、NSNumber、NSDate、NSArray、NSDictionary。 如果要存储其他类型,则需...
分类:
移动开发 时间:
2014-09-23 19:19:35
阅读次数:
213
Configuring the Gesture@property(nonatomic) NSUInteger numberOfTapsRequired@property(nonatomic) NSUInteger numberOfTouchesRequired例子 // 单击的 Recogni...
分类:
其他好文 时间:
2014-09-22 23:43:03
阅读次数:
362
-(IBAction)stretchAction:(NSUInteger)section{ if (self.beforeIndex != -1 && self.beforeIndex != section) { GoodsInfo *mInfo = [self.dataArray obj...
分类:
其他好文 时间:
2014-09-22 19:06:42
阅读次数:
153
Configuring the Gesture Recognizer@property(nonatomic) NSUInteger maximumNumberOfTouches//The maximum number of fingers that can be touching the view ...
分类:
其他好文 时间:
2014-09-22 19:04:23
阅读次数:
241
一、iOS6之后UIViewController 旋转处理1、view controller 是否支持自动旋转- (BOOL)shouldAutorotate;2、view controller 支持哪几种- (NSUInteger)supportedInterfaceOrientations;在U...
分类:
移动开发 时间:
2014-09-21 01:03:39
阅读次数:
187
?Foundation框架提供了非常多好用的类, 比如NSString : 字符串NSArray : 数组NSDictionary : 字典NSDate : 日期NSData : 数据NSNumber : 数字1.首先介绍NSStringa.NSString的创建1)最直接的方式(这是常量字符串)N...
分类:
其他好文 时间:
2014-09-19 23:45:56
阅读次数:
248
NSArray 常用方法 NSMutableArray 常用方法 NSNumber 常用方法 NSMutableArray 常用方法...
分类:
其他好文 时间:
2014-09-19 21:10:46
阅读次数:
226
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {
UIBlurEffectStyleExtraLight,
UIBlurEffectStyleLight,
UIBlurEffectStyleDark
} NS_ENUM_AVAILABLE_IOS(8_0);
UIBlurEffect *blurEffe...
分类:
移动开发 时间:
2014-09-19 15:37:45
阅读次数:
272