码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
iOS 根据文本内容为TextView动态定义高度
解决方案: 1.定义一个textview,在storyboard中设定constraints。 2.将高度的constraint定义到头文件中:(直接拖拽) @property (weak, nonatomic) IBOutlet NSLayoutConstraint *textviewHeightConstraint; 3.待在实现文件中为textview加载了内容之后,获取文本高度,为...
分类:移动开发   时间:2014-07-10 20:56:49    阅读次数:237
Error解决:Property's synthesized getter follows Cocoa naming convention for returning 'owned'
在项目中定义了以new开头的textField,结果报错: 先看我的源码:#import @interface ResetPasswordViewController : UIViewController @property (weak, nonatomic) IBOutlet UITextField *phoneTextField; @property (weak, nonatomic) ...
分类:其他好文   时间:2014-07-09 12:09:41    阅读次数:208
error: property's synthesized getter follows Cocoa naming convention for returning 'owned' objects
出现这种情况,主要是属性名中包含  关键字.  You can solve this by: Renaming that property: @property (strong, nonatomic) NSString *theNewTitle; Keeping the property name and specifying a getter name th...
分类:其他好文   时间:2014-07-09 10:30:12    阅读次数:218
IOS怎么实现一个UITableView的下拉刷新
采用的EGORefreshTableHeaderView来实现: 在Controller上实现EGORefreshTableHeaderDelegate的delegate @property(nonatomic)UITableView* tableView; @property(nonatomic)NSMutableArray* data; @property(nonatomic)EGORef...
分类:移动开发   时间:2014-07-08 21:32:07    阅读次数:316
ios 开发选取头像,图片库,相机,裁取图片
需要遵守的代理协议:UIActionSheetDelegate,UIImagePickerControllerDelegate,UINavigationControllerDelegate@property (nonatomic, strong) UIActionSheet *avatarActio...
分类:移动开发   时间:2014-07-06 13:18:33    阅读次数:205
关于内存管理的黄金法则
最近对内存管理,有了一些新的认识,以前只知道alloc,或者retain,或者copy,之后需要release或者autorelease; 只知其一,但是在工作学习中仅仅知道这些是不够用的,还需要知道属性等内部的内存存管理才行. @property (readwrite,nonatomic,assign)NSInteger age; @property (readwrite,no...
分类:其他好文   时间:2014-07-04 09:31:10    阅读次数:354
ios网络学习------10 原生API文件上传
使用原生态的api上传文件的实现: #import "MainViewController.h" @interface MainViewController () @property (weak, nonatomic) UIImageView *imageView; @end @implementation MainViewController - (void)viewDidLoad {...
分类:移动开发   时间:2014-07-03 17:11:43    阅读次数:279
从服务器获取的 数值,进行值传递,不同的文件夹之间的调用。
在A.h文件中 定义一个@property (strong, nonatomic) NSString *dicString;在A.m文件中//从服务器中获取到的值 赋给 dicString 进行值传递给另一个文件使用NSDictionary *dict=[NSJSONSerialization J....
分类:其他好文   时间:2014-07-03 12:26:19    阅读次数:174
视图自定义旋转动画 类似百度音乐
@interface FirstViewController () @property (nonatomic,assign)BOOL isplay; @end @implementation FirstViewController @synthesize isplay; - (void)viewDidLoad {     [super viewDid...
分类:其他好文   时间:2014-07-02 10:47:22    阅读次数:191
iOS开发网络篇—文件下载(三·进度条)
一、实现下载文件进度控制1.代码示例 1 #import "YYViewController.h" 2 3 @interface YYViewController () 4 @property(nonatomic,strong)NSMutableData *fileData; 5 @pr...
分类:移动开发   时间:2014-07-01 10:36:39    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!