Exception:org.hibernate.PropertyAccessException: Null value was assigned to a property of primitive type setter of com.vtradex.swms.server.model.recei...
分类:
其他好文 时间:
2014-11-05 12:13:49
阅读次数:
214
#import "RootViewController.h"
#import "RootView.h"
@interface RootViewController ()
@property(nonatomic,retain)RootView *myview;
@end
@implementation RootViewController
- (id)initWithNibName:(NSSt...
分类:
移动开发 时间:
2014-11-04 22:44:59
阅读次数:
312
一:OC中得点语法1> 点语法的基本使用:·使用对象.成员变量可以实现设置成员变量值,和获取成员变量的值2> 点语法的本质(点语法是Xcode编译器自己帮我们完成的一个功能) 实际上点语法就是set和get方法,当编译遇到点语法时,编译器就会将点语法转成set和get方法。注意:也就是说,如果类中....
分类:
其他好文 时间:
2014-11-04 21:06:32
阅读次数:
205
ViewController.h中定义按钮 btn1;
@property (weak,
nonatomic) IBOutlet
UIButton *btn1;
ViewController.m中实现按下按钮跳转到:qqqViewController;
- (IBAction)btn1:(i...
分类:
移动开发 时间:
2014-11-04 19:48:45
阅读次数:
196
一、前言
ios开发中,@property的修饰就有很多的修饰词,如retain、assign、strong、weak、nonatomic等等,而这些修饰词在ARC模式下与非ARC模式下也是略有不同。下面先简单说说ARC模式
二、什么是ARC
ARC是iOS 5推出的新功能,全称为Automatic Reference Counting。一句话说,...
分类:
移动开发 时间:
2014-11-04 19:47:10
阅读次数:
262
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:hczm' did not find a matchin...
分类:
Web程序 时间:
2014-11-04 16:43:33
阅读次数:
228
@property (weak, nonatomic) IBOutlet UITextField *Text1;@property (weak, nonatomic) IBOutlet UITextField *Text2;@property (weak, nonatomic) IBOutlet U...
分类:
其他好文 时间:
2014-11-04 16:35:21
阅读次数:
255
原文转自:http://segmentfault.com/blog/windwhinny/1190000000596258公开 property当你公开一个 Polymer 元素的 property 名字时,就等于把这个 property 设置为公开API了。公开 property 会有如下的特性:...
struts中的component标签,可以用来调用freemarker的ftl模板文件,使用component标签传参可以这样写:使用property方式写法: 使用request的get/set attribute方法的写法: ...
分类:
其他好文 时间:
2014-11-03 14:35:20
阅读次数:
227
1. Animation Resources An animation resource can define one of two types of animations: Property Animation Creates an animation by modifying an o...
分类:
移动开发 时间:
2014-11-03 14:22:07
阅读次数:
219