ChiOS-我的Swift学习笔记

1. 怎样自定义初始化方法?

convenience init(by name: ee) {
    self.init(name: ee, bundle: nil)
}

2. 怎样写一个单例?

final class UserInfoManager {
    private init() {}
    static let shared = UserInfoManager()
}

3. 使用Realm的object,属性一定要是dynamic的,否则查询成功以后model不能取到值

import UIKit
import RealmSwift
class UserLoginInfoModel: Object {
    dynamic var cardNum: String!
    dynamic var companyId: String!
    dynamic var companyName: String!
    dynamic var userId: String!
    override static func primaryKey() -> String? {
        return "userId"
    }
}

4. 如何使用响应链来处理多层视图的事件

参考链接 http://www.cocoachina.com/ios/20161205/18282.html

import Foundation
import UIKit
extension UIResponder {
    func handOutAction(by identifier: String, sender: Any!) {
        if !responderRouterActionChain(by: identifier, sender: sender) {
            guard let nextResponder = next else { return }
            nextResponder.handOutAction(by: identifier, sender: sender)
        }
    }

    internal func responderRouterActionChain(by identifier: String, sender: Any!) -> Bool {
        return false
    }
}

Demo地址:https://github.com/NirvanAcN/2017DayDayUp (Day2)

5. 关于Realm使用工程中的.realm文件

参考链接 https://realm.io/docs/swift/latest/#other-realms

在工程中可能需要拖入一些.realm文件来读取一些配置或者静态数据。这时候使用如下代码是无法读取Test.realm文件的(模拟器可以读取)

guard let fileURL = Bundle.main.url(forResource: "Test", withExtension: "realm") else {
    return
}
let realm = try! Realm.init(fileURL: fileURL)

按照官网说明,只需要如下修改一下配置Configuration

guard let fileURL = Bundle.main.url(forResource: "Test", withExtension: ".realm") else {
    return
}
let config = Realm.Configuration(fileURL: fileURL, readOnly: true)
let realm = try! Realm(configuration: config)

6. 获取最上层视图(keyWindow)

参考链接 http://www.jianshu.com/p/3705caee6995

let window = UIApplication.shared.keyWindow

7. 怎样显示Playground的liveView?

View - Assistant Editor - Show Assistant Editor
快捷键组合 option + command + ↵

8. 如何将A-Z/a-z存入数组?

参考链接 http://blog.csdn.net/flyback/article/details/48268829

let Acode = UnicodeScalar("A")!.value    //65
let Zcode = UnicodeScalar("Z")!.value    //90
let array = (Acode...Zcode).map { String(format: "%c", $0) }

9.怎样判断代理实现了某个方法?

借助optional

protocol TestDelegate: NSObjectProtocol {
    func testFunction()
}
.
.
.
weak var delegate: TestDelegate!
delegate?.testFunction()

10.怎样取消Button点击时的高亮状态?

参考链接 http://www.jianshu.com/p/7eb016e4ceb1

获取.allTouchEvents事件,将isHighlighted置否

btn.addTarget(self, action: #selector(onBtnsAllAction), for: .allTouchEvents)
.
.
.
@objc private func onBtnsAllAction(_ sender: UIButton) {
    sender.isHighlighted = false
}

11.如何打印行数?

print(#line)

12.Realm支持什么数据格式?

Bool    (作为Object属性必须有默认值)
Int8
Int16
Int32
Int64
Double
Float
String  (不能保存超过 16 MB 大小的数据,optional)
Date    (精度到秒)
Data    (不能保存超过 16 MB 大小的数据)

13.怎样在Attributes inspector中添加自定义属性?

@IBDesignable
@IBInspectable
如图所示效果

Demo地址:https://github.com/NirvanAcN/2017DayDayUp (Day1)

14.获取农历

let calendar = Calendar.init(identifier: .chinese)
let date = Date()
let localeComp = calendar.dateComponents([.year, .month, .day], from: date)

print(localeComp.year)
print(localeComp.month)
print(localeComp.day)

15.如何截屏

UIGraphicsBeginImageContext(someView.bounds.size)
someView.layer.render(in: UIGraphicsGetCurrentContext()!)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()

16.使用YYModel过程中遇到 fatal error: NSArray element failed to match the Swift Array Element type 异常

实现modelContainerPropertyGenericClass方法

class OrderModel: NSObject, YYModel {
    var goods: [OrderGoodsModel]!

    static func modelContainerPropertyGenericClass() -> [String : Any]? {
        return [
            "ddxq": OrderGoodsModel.self
        ]
    }
}

class OrderGoodsModel: NSObject, YYModel {

}

17.Realm增加/删除/修改表字段

修改完毕后需要在application(_:didFinishLaunchingWithOptions:)方法中对数据库的版本进行重新设置(默认schemaVersion为0,修改后的schemaVersion应大于原值):

Realm.Configuration.defaultConfiguration = Realm.Configuration(
    schemaVersion: 0
)

18.应用内打开AppStore

StoreKit

19.ATS中设置例外(白名单)

参考链接:http://www.cocoachina.com/ios/20150928/13598.html

例如,允许来自 http://www.baidu.com 的相关链接进行http访问

<key>NSAppTransportSecurity</key>  
  <dict>  
      <key>NSExceptionDomains</key>  
      <dict>  
          <key>www.baidu.com</key>  
          <dict>  
              <key>NSExceptionAllowsInsecureHTTPLoads</key>  
              <true/>  
          </dict>  
      </dict>  
  </dict>  

20.Debug 标示符

__FILE__ ->  #file
__LINE__ -> #line
__COLUMN__ -> #column
__FUNCTION__ -> #function
__DSO_HANDLE__ -> #dsohandle

21.修改Status Bar颜色

参考链接:http://www.jianshu.com/p/25e9c1a864be

修改plist文件

    <key>UIStatusBarStyle</key>
    <string>UIStatusBarStyleLightContent</string>
    <key>UIViewControllerBasedStatusBarAppearance</key>
    <false/>

22.修改了工程的BundleID后,运行产生Failed to load Info.plist from bundle错误

错误截图

参考链接 http://stackoverflow.com/a/42067502/7760667

解决方案:重置模拟器
Simulator —— Reset content and Setting...

23.EXC_BAD_ACCESS?

Scheme — Run — Diagnostics - Runtime Sanitization - Address Sanitizer

24.测试未发布的Pod/不发布通过cocoapods使用git上的仓库

参考链接 https://guides.cocoapods.org/making/making-a-cocoapod.html#testing

You can test the syntax of your Podfile by linting the pod against the files of its directory, this won't test the downloading aspect of linting.

$ cd ~/code/Pods/NAME$ pod lib lint

Before releasing your new Pod to the world its best to test that you can install your pod successfully into an Xcode project. You can do this in a couple of ways:
Push your podspec to your repository, then create a new Xcode project with a Podfile and add your pod to the file like so:

pod 'NAME', :git => 'https://example.com/URL/to/repo/NAME.git'

Then run

pod install-- or --pod update

25.发布的Pod搜索不到?

pod setup
rm ~/Library/Caches/CocoaPods/search_index.json

26.Git如何删除远程tag?

git tag -d 0.0.1
git push origin :refs/tags/0.0.1

27.怎样对异步函数进行单元测试

参考链接 http://www.mincoder.com/article/3650.shtml

func testShowMe() {
    /// Creates and returns an expectation associated with the test case.
    let exp = expectation(description: "my_tests_identifying")
    DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 2) {
        /// that vended the expectation has already completed.
        exp.fulfill()
    }
    /// are fulfilled or the timeout is reached. Clients should not manipulate the run
    waitForExpectations(timeout: 3, handler: nil)
}

28.怎样在多个异步操作完成后再执行指定操作

参考链接 http://www.jianshu.com/p/6a7af360bf2a

let group = DispatchGroup()
let timeLine = DispatchTime.now()
(0..<10).forEach({ (idx) in
    group.enter()
    DispatchQueue.main.asyncAfter(deadline: timeLine + TimeInterval(idx), execute: {
        group.leave()
    })
})
group.notify(queue: DispatchQueue.main) {
    /// finished
}

29.怎样在向上滑动时隐藏NavagationBar?

hidesBarsOnSwipe = true

30.设置NavagationBar背景透明?

参考链接 http://www.jianshu.com/p/b2585c37e14b

navigationBar.subviews[0].alpha = 0

31.怎样在Framework/Pod中加载Xib、Storyboard 、图片等资源(加载Bundle)?

参考链接 http://blog.csdn.net/ayuapp/article/details/54631592

// 1. 暴露Framework的Class文件
// 2. 使用public /*not inherited*/ init(for aClass: Swift.AnyClass)加载
let bundle = Bundle.init(for: JRConfigurations.self)

32.怎样将AVFoundation中AVCaptureMetadataOutput的rectOfInterest坐标转换为正常屏幕坐标?

在AVCaptureSession执行startRunning()函数后,AVCaptureVideoPreviewLayer通过metadataOutputRectOfInterest方法转换即可得到转换后的坐标。

33.查看、修改Git用户名、邮箱

$ git config --global user.name "username"

$ git config --global user.email "email"

34.GIT追加的.gitignore规则不生效?

$ git rm -r --cached .
$ git add .
$ git commit -m 'update .gitignore'

35.怎样给一个Optional添加一个extension?

extension Optional where Wrapped == String {
  var isBlank: Bool {
    return self?.isBlank ?? true
  }
}

36.怎样调整行间距?

let des = NSMutableAttributedString.init(string: "hello world")
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.lineSpacing = 6
des.addAttributes([NSParagraphStyleAttributeName: paragraphStyle], range: NSRange.init(location: 0, length: des.length))       
label.attributedText = des
附:NSMutableParagraphStyle其他属性
行间距 
CGFloat lineSpacing

段间距 
CGFloat paragraphSpacing

对齐方式 
NSTextAlignment alignment

首行缩进
CGFloat firstLineHeadIndent

除首行之外其他行缩进
CGFloat headIndent

每行容纳字符的宽度
CGFloat tailIndent

换行方式
lineBreakMode

最小行高
CGFloat minimumLineHeight

最大行高
CGFloat maximumLineHeight

37.怎样判断一个对象是否在某个范围?

let age = 27
print(20...30 ~= age) /// true
let score = [100, 99, 80, 66, 40]

let filter = score.filter {
    return 90...100 ~= $0
}
print(filter) /// [100, 99]

38.ASDK Flex属性?

direction:
    ASStackLayoutDirectionVertical
    ASStackLayoutDirectionHorizontal
justifyContent:
    ASStackLayoutJustifyContentStart
    ASStackLayoutJustifyContentEnd
    ASStackLayoutJustifyContentCenter
    ASStackLayoutJustifyContentSpaceBetween
    ASStackLayoutJustifyContentSpacAeround
alignItems:
    ASStackLayoutAlignItemsStart
    ASStackLayoutAlignItemsEnd
    ASStackLayoutAlignItemsCenter
    ASStackLayoutAlignItemsBaselineFirst
    ASStackLayoutAlignItemsBaselineLast
    ASStackLayoutAlignItemsStretch

39.ASDK Layout Specs规则?

ASInsetLayoutSpec   
ASOverlayLayoutSpec 
ASBackgroundLayoutSpec  
ASCenterLayoutSpec  
ASRatioLayoutSpec   
ASStackLayoutSpec   
ASAbsoluteLayoutSpec    
ASRelativeLayoutSpec
ASWrapperLayoutSpec

40.怎样设置ASCollecitonNode的header&footer?

foo.registerSupplementaryNode(ofKind: UICollectionElementKindSectionFooter)
func collectionNode(_ collectionNode: ASCollectionNode, nodeForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> ASCellNode {
    return ASCellNode()
}

func collectionNode(_ collectionNode: ASCollectionNode, sizeRangeForFooterInSection section: Int) -> ASSizeRange {
    return ASSizeRange()
}

41.搜索状态navigation bar上的search controller的search bar消失了?

searchController.hidesNavigationBarDuringPresentation = false

42.Xcode9 ScrollView下移?

        if #available(iOS 11.0, *) {
            view.contentInsetAdjustmentBehavior = .never
        } else {
            automaticallyAdjustsScrollViewInsets = false
        }

43. ASDK设置间距

nodeB.style.spaceBefore = 15

44. 设置SSH连接

$ ssh-keygen
$ cat ~/.ssh/id_rsa.pub
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,907评论 25 707
  • 不知何时起,春天就已经来了。换上春装,带着手机,乘阳光正好去感受春的气息。路遇一棵垂柳,迎面而来的就是一阵清新,枝...
    木子不爱糖阅读 275评论 1 2
  • 一年前,大概是在六月底的时候,我在公交车上阅读《约翰·克利斯朵夫》,读到约翰和他的舅舅在一个空旷的田野中感受大自然...
    稳泛沧浪阅读 286评论 0 0
  • JSP 标准标记库(JSP Standard Tag Library,JSTL)是一个实现 Web 应用程序中常见...
    梦幻随手记阅读 453评论 0 1