#import "ViewController.h" @interface ViewController () @property (nonatomic, strong) UILabel *fontLabel; @property (nonatomic, strong) UITextField *textField; @end @implementation ViewController -...
分类:
其他好文 时间:
2015-08-20 06:57:39
阅读次数:
176
@interface IndEditorDetailViewController ()"">
{
UIWebView *_webView;
UIProgressView *_progressView;
NJKWebViewProgress *_progressProxy;
}
@end
@implementation IndEditorDetailVie...
分类:
移动开发 时间:
2015-08-19 20:45:16
阅读次数:
134
我感觉UIActionSheet和UIAlertView的用法差不多,都很简单,下面给出一个简单的Demo,具体想用哪个,根据公司要求和个人爱好。#import "ViewController.h"@interface ViewController ()@end@implementation V.....
分类:
其他好文 时间:
2015-08-19 13:11:43
阅读次数:
110
Context,中文直译为“上下文”,SDK中对其说明如下:Interface to global information about an application environment. This is an abstract class whose implementation is pro....
分类:
其他好文 时间:
2015-08-19 00:06:58
阅读次数:
254
#import "RootViewController.h"
#import "FMDatabase.h"
@interface RootViewController ()
{
FMDatabase *_dataBase;
}
@end
@implementation RootViewController
- (id)initWithNibName:(NSString *)nibNa...
分类:
数据库 时间:
2015-08-18 22:56:56
阅读次数:
371
#import "ViewController.h"@interface ViewController ()@property (weak,nonatomic) IBOutlet UIImageView *tupianView;@end@implementation ViewController-(...
分类:
移动开发 时间:
2015-08-18 16:15:10
阅读次数:
142
新建一个“Cocoa Touch Class”文件,命名为PeoplePeople.h 写入@interface People : NSObject@property int age;@endPeople.m写入(其实是自动产生的)@implementation People@end使用场合:i.....
分类:
其他好文 时间:
2015-08-18 14:03:52
阅读次数:
142
OC方法的声明与实现oc方法的声明在@interface中 大括号外@end上面oc方法的实现在@implementation 中@end上面OC方法中,一个参数对应一个冒号方法名:例 fangFaMing:(冒号也是方法名的一部分) -返回值类型 方法名:参数名:(参数类型)参数参数名:(参数类....
分类:
其他好文 时间:
2015-08-18 00:57:20
阅读次数:
128
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIView * v = [[UIView alloc] initWithFrame:CGRect...
分类:
其他好文 时间:
2015-08-17 21:54:16
阅读次数:
6214
首先在工程里导入MapKit.framework 1 #import "RootViewController.h" 2 #import 3 @interface RootViewController () 4 5 @end 6 7 @implementation RootViewControl...
分类:
移动开发 时间:
2015-08-17 21:23:34
阅读次数:
146