Skip to content

Commit

Permalink
change.
Browse files Browse the repository at this point in the history
  • Loading branch information
wuguanyu committed May 9, 2016
1 parent fb1e311 commit ab4e5f7
Show file tree
Hide file tree
Showing 33 changed files with 4,785 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ADownloadDemo/FileHelper.swift
@@ -0,0 +1,20 @@
//
// FileHelper.swift
// ADownloadDemo
//
// Created by wuguanyu on 16/3/17.
// Copyright © 2016年 dejauu. All rights reserved.
//

import UIKit

class FileHelper: NSObject {
class func deleteFile(pathStr: String) {
let fileManager = NSFileManager.defaultManager()
do {
try fileManager.removeItemAtPath(pathStr)
} catch let error {
print("error \(error)")
}
}
}
56 changes: 56 additions & 0 deletions Pods/Realm/Realm/ObjectStore/collection_notifications.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

96 changes: 96 additions & 0 deletions Pods/Realm/Realm/ObjectStore/impl/apple/weak_realm_notifier.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ab4e5f7

Please sign in to comment.