// // ViewController.swift // learn5 // // Created by myhaspl on 16/1/23. // Copyright (c) 2016年 myhaspl. All rights reserved. // import Cocoa import ...
分类:
编程语言 时间:
2017-08-18 22:32:46
阅读次数:
214
// // ViewController.m // LabelAll // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad ...
分类:
移动开发 时间:
2017-08-18 15:23:28
阅读次数:
202
有些属性和方法始终是记不清,只能记下来,方便查找 如果对你有帮助请支持,没有帮助请告诉我哪里需要改进!谢谢! // ViewController.m // TableViewAll #import "ViewController.h" @interface ViewController ()<UIT ...
分类:
移动开发 时间:
2017-08-17 20:25:28
阅读次数:
335
1.项目需要:iPad支持横屏,iPhone支持竖屏, (1) (2)在info。plist里面设置View controller-based status bar appearance为NO。 (3)这样iPad运行为横屏显示,在不需要显示状态栏的情况下,在ViewController设置 sel ...
分类:
其他好文 时间:
2017-08-14 10:07:00
阅读次数:
271
一,效果图。 二,代码。 ViewController.m ...
分类:
移动开发 时间:
2017-08-11 11:00:01
阅读次数:
175
一,工程图。 二,代码。 ViewController.m #import "ViewController.h" #import "ScanViewController.h" @interface ViewController () @end @implementation ViewControll ...
分类:
移动开发 时间:
2017-08-08 10:48:39
阅读次数:
165
1. 无法切换分支 原因:ViewController.swift 中的文件提交后,commit 没有提交成功,需要提交成功,才能切换到其他支。 1.1 git add 几种区别 注意:git init后新加的文件,先要git add才能纳入git版本库管理,否则新加文件为未跟踪状态。即:与 git ...
分类:
其他好文 时间:
2017-08-05 20:30:37
阅读次数:
170
//第一个控制器:显示基础控件 import UIKit class ViewController: UIViewController { var label: UILabel = UILabel() var button: UIButton = UIButton() var imageView: ...
分类:
编程语言 时间:
2017-08-05 10:58:58
阅读次数:
207
@interface ViewController () { dispatch_source_t _timer; } @property (weak, nonatomic) IBOutlet UILabel *timeLab; @end @implementation ViewController ... ...
分类:
其他好文 时间:
2017-08-04 15:21:58
阅读次数:
108
//注册点击事件 self.view.addGestureRecognizer(UITapGestureRecognizer(target:self, action:#selector(你的viewcontroller.handleTap(sender:)))) //对应方法 func handle ...
分类:
编程语言 时间:
2017-08-03 14:52:05
阅读次数:
182