// // ViewController.swift // hustle-mode // // Created by dwang on 08/11/2017. // Copyright © 2017 dwang. All rights reserved. // import UIKit import ...
分类:
其他好文 时间:
2017-11-08 21:26:25
阅读次数:
140
import UIKit class firstViewController: UIViewController,UIImagePickerControllerDelegate,UINavigationControllerDelegate { var picker :UIImagePickerCon ...
分类:
编程语言 时间:
2017-11-03 00:10:26
阅读次数:
284
创建一个View #import <UIKit/UIKit.h> typedef void(^clickLabelBlock)(NSInteger index,NSString *titleString); @interface CCPScrollView : UIView /** * 文字数组 * ...
分类:
其他好文 时间:
2017-11-02 13:08:35
阅读次数:
130
需求: 做一个类似于微信朋友圈一样的带有展示和评论 回复功能的页面 思路: 1.整个页面可以使用UITableView进行实现 2.将发布的信息主体作为UITableView的区头 3.将评论信息作为UITableView的cell 这样我们再添加一些简单的逻辑和控件 就能实现简单的评论页面 简单的 ...
分类:
移动开发 时间:
2017-10-26 13:27:15
阅读次数:
178
主线程中也不绝对安全的 UI 操作 从最初开始学习 iOS 的时候,我们就被告知 UI 操作一定要放在主线程进行。这是因为 UIKit 的方法不是线程安全的,保证线程安全需要极大的开销。那么问题来了,在主线程中进行 UI 操作一定是安全的么? 显然,答案是否定的! 在苹果的 MapKit 框架中,有 ...
分类:
编程语言 时间:
2017-10-13 20:04:32
阅读次数:
205
CAEAGLLayer 当iOS要处理高性能图形绘制,必要时就是OpenGL。应该说它应该是最后的杀手锏,至少对于非游戏的应用来说是的。因为相比Core Animation和UIkit框架,它不可思议地复杂。 OpenGL提供了Core Animation的基础,它是底层的C接口,直接和iPhone ...
分类:
其他好文 时间:
2017-10-03 16:27:48
阅读次数:
214
直接上代码: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() let btn = UIButton.init(frame: CGRect.i ...
分类:
编程语言 时间:
2017-09-27 17:37:43
阅读次数:
942
创建LCFirstViewManager.h/.m文件,(关键点我回指出) LCFirstViewManager.h中代码如下: #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <React/RCTViewManag ...
分类:
其他好文 时间:
2017-09-27 15:21:56
阅读次数:
152
原文:Safe Area Layout Guide Apple在iOS 7中引入了topLayoutGuide和bottomLayoutGuide作为UIViewController属性。它们允许您创建约束,以保持内容不被状态,导航或标签栏等UIKit栏隐藏。 这些布局指南在iOS 11中已被弃用, ...
分类:
其他好文 时间:
2017-09-25 13:22:58
阅读次数:
146
import UIKit class ViewController: UIViewController {//定义通知的名字,Notification 的“名字”不再是字符串类型,而是 Notification.Name 类型 let myNotification = Notification.Na ...
分类:
编程语言 时间:
2017-09-22 11:58:16
阅读次数:
172