iPhoneアプリ未経験者がSwift2 Xcode7で自分向開発手順1
写真編集アプリ開発から学ぶSwift2 Xcode7
1、ローカル写真リストアンドセレクトアプリの全体的イメージ
①写真サムネイルリストより選択した写真の拡大表示(以下は完成途中のイメージ)
②保存された写真を全検索してデータベース化
・Sqlite3のローカルデータベースへ写真ごとのパスを保存
・各写真からExifデータを元にデータベースへ更新
・写真選択拡大表示と同時にコメント、キーワード等を
データベース化(下記の様な環境設定)
③ローカル写真検索処理
・キーワード及び分類キーにより写真を整理し条件指定でリストアップ
以下Sqlite3データベースphotolist.dbとし設定処理
override func viewDidLoad() {
super.viewDidLoad()
let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
let paths = NSSearchPathForDirectoriesInDomains(.DocumentDirectory,.UserDomainMask, true)
let _pathx = NSURL(fileURLWithPath: paths[0]).URLByAppendingPathComponent("photolist.db").path
let db = FMDatabase(path: _pathx)
if db == true {
print("already create data base")
}else{
print("create database")
}
db.open()
............省略
}
Author And Source
この問題について(iPhoneアプリ未経験者がSwift2 Xcode7で自分向開発手順1), 我々は、より多くの情報をここで見つけました https://qiita.com/shinsakujazzbass/items/56d984dd43f5bb15955e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .