function NewDate(dateTime) { var fulldate = dateTime.split('-'); var day = fulldate[2].split(" "); var time = day[1]....
分类:
编程语言 时间:
2014-07-07 12:43:39
阅读次数:
701
typedef void (^dd)(void);@property (strong) dd a ;@property (copy) dd a ;__weak id b=self; self.a=^{ NSLog(@"%@",self); };编译器都会有警告:循环引用造成的内存泄露---...
分类:
其他好文 时间:
2014-07-07 09:17:36
阅读次数:
221
今天开始学习WPF,大家都推荐《深入浅出WPF》这本书,一下是我觉得此书中重要的地方,记录下来以便以后回顾,也希望其他人看到了对你们有帮助。1.XAML是可扩展应用程序标记语言 是WPF技术中专门用于设计UI的语言。2.Attribute和Property的区别,虽然它们都被翻译为“属性”,但是这两...
分类:
其他好文 时间:
2014-07-07 09:02:10
阅读次数:
174
hasOwnProperty(property) 方法JavaScript中hasOwnProperty函数方法是返回一个布尔值,指出一个对象是否具有指定名称的属性。 使用方法:object.hasOwnProperty(proName)其中参数object是必选项。一个对象的实例。proName是...
分类:
Web程序 时间:
2014-07-05 20:03:57
阅读次数:
258
最近对内存管理,有了一些新的认识,以前只知道alloc,或者retain,或者copy,之后需要release或者autorelease;
只知其一,但是在工作学习中仅仅知道这些是不够用的,还需要知道属性等内部的内存存管理才行.
@property (readwrite,nonatomic,assign)NSInteger age;
@property (readwrite,no...
分类:
其他好文 时间:
2014-07-04 09:31:10
阅读次数:
354
如果出现:
nested push animation can result in corrupted navigation bar
Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted.
一般这种情况是在自定义的t...
分类:
其他好文 时间:
2014-07-04 00:36:55
阅读次数:
223
一下是在xml配置文件中设置一个参数,此标签在:标签下使用 value property常用参数如下:connection.driver_class 数据库连接驱动 connection.url 数据库的连接urlconnection.username 登录名connection.password ...
分类:
系统相关 时间:
2014-07-03 19:11:52
阅读次数:
249
使用原生态的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