解决方案:
1.定义一个textview,在storyboard中设定constraints。
2.将高度的constraint定义到头文件中:(直接拖拽)
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *textviewHeightConstraint;
3.待在实现文件中为textview加载了内容之后,获取文本高度,为...
分类:
移动开发 时间:
2014-07-10 20:56:49
阅读次数:
237
在项目中定义了以new开头的textField,结果报错:
先看我的源码:#import
@interface ResetPasswordViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITextField *phoneTextField;
@property (weak, nonatomic) ...
分类:
其他好文 时间:
2014-07-09 12:09:41
阅读次数:
208
出现这种情况,主要是属性名中包含 关键字.
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
采用的EGORefreshTableHeaderView来实现:
在Controller上实现EGORefreshTableHeaderDelegate的delegate
@property(nonatomic)UITableView* tableView;
@property(nonatomic)NSMutableArray* data;
@property(nonatomic)EGORef...
分类:
移动开发 时间:
2014-07-08 21:32:07
阅读次数:
316
需要遵守的代理协议: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
使用原生态的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
一、实现下载文件进度控制1.代码示例 1 #import "YYViewController.h" 2 3 @interface YYViewController () 4 @property(nonatomic,strong)NSMutableData *fileData; 5 @pr...
分类:
移动开发 时间:
2014-07-01 10:36:39
阅读次数:
228