码迷,mamicode.com
首页 >  
搜索关键字:nsinteger nsuinteger nsnumber    ( 1059个结果
OC中快速创建NSNumber NSDictionary NSArray的方法
NSNumber: @() @小括号 或者 NSNumber * num = @3; NSValue * value = @4;NSDictionary :@{} @大括号NSArray :@[] @中括号
分类:其他好文   时间:2014-09-24 18:01:07    阅读次数:163
【iOS知识学习】_iOS Label添加删除线
在做优惠价格的时候需要用到删除线,但是网上的删除线千篇一律,都是大抄小抄,其实苹果的NSAttributedString就可以实现这一点啦。 代码如下: NSString *oldPrice = @"¥ 12345"; NSUInteger length = [oldPrice length]; NSMutableAttributedString *attri...
分类:移动开发   时间:2014-09-24 00:52:05    阅读次数:417
IOS数据持久化之NSUserDefaults
NSUserDefaults: 用来保存应用程序设置和属性、用户保存的数据。 用户再次打开程序或开机后这些数据仍然存在。 可以存储的数据类型包括: NSData、NSString、NSNumber、NSDate、NSArray、NSDictionary。 如果要存储其他类型,则需...
分类:移动开发   时间:2014-09-23 19:19:35    阅读次数:213
UITapGestureRecognizer
Configuring the Gesture@property(nonatomic) NSUInteger numberOfTapsRequired@property(nonatomic) NSUInteger numberOfTouchesRequired例子 // 单击的 Recogni...
分类:其他好文   时间:2014-09-22 23:43:03    阅读次数:362
tbsections,
-(IBAction)stretchAction:(NSUInteger)section{ if (self.beforeIndex != -1 && self.beforeIndex != section) { GoodsInfo *mInfo = [self.dataArray obj...
分类:其他好文   时间:2014-09-22 19:06:42    阅读次数:153
UIPanGestureRecognizer
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 自适应旋转处理
一、iOS6之后UIViewController 旋转处理1、view controller 是否支持自动旋转- (BOOL)shouldAutorotate;2、view controller 支持哪几种- (NSUInteger)supportedInterfaceOrientations;在U...
分类:移动开发   时间:2014-09-21 01:03:39    阅读次数:187
oc中的基本框架Foundation
?Foundation框架提供了非常多好用的类, 比如NSString : 字符串NSArray : 数组NSDictionary : 字典NSDate : 日期NSData : 数据NSNumber : 数字1.首先介绍NSStringa.NSString的创建1)最直接的方式(这是常量字符串)N...
分类:其他好文   时间:2014-09-19 23:45:56    阅读次数:248
OC 第七天 容器类 lesson7
NSArray 常用方法 NSMutableArray 常用方法 NSNumber 常用方法 NSMutableArray 常用方法...
分类:其他好文   时间:2014-09-19 21:10:46    阅读次数:226
iOS8自带模糊效果
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {     UIBlurEffectStyleExtraLight,     UIBlurEffectStyleLight,     UIBlurEffectStyleDark } NS_ENUM_AVAILABLE_IOS(8_0); UIBlurEffect *blurEffe...
分类:移动开发   时间:2014-09-19 15:37:45    阅读次数:272
1059条   上一页 1 ... 93 94 95 96 97 ... 106 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!