- お知らせ
- 2017-06-16 - 更新:2018-11-05
LINEスタンプをiOSで使えるiMessageステッカーに移植しました。
セリフなしのタイプなので、メッセージと一緒に幅広くお使いいただけます。
現在は非公開のため、AppStoreへのリンクは削除しました。(18/11/05)
LINEスタンプをiOSで使えるiMessageステッカーに移植しました。
セリフなしのタイプなので、メッセージと一緒に幅広くお使いいただけます。
現在は非公開のため、AppStoreへのリンクは削除しました。(18/11/05)
今回はUIViewやUIButtonをアニメーションさせる方法をご紹介します。
まずはアニメーションさせる適当なViewを作成します。
let sampleView = UIView() sampleView.frame.size = CGSize(width: 120, height: 120) sampleView.center = CGPoint(x: 60, y: 60) sampleView.backgroundColor = UIColor.white sampleView.layer.borderColor = UIColor.cyan.cgColor sampleView.layer.borderWidth = 2 view.addSubview(sampleView)
作成したViewをアニメーションさせるにはUIView.animateメソッドを使用します。
ここでは大きさを変更してみましょう。
中心点も設定しているのは、大きさを変更すると左上を起点に大きさが変わってしまうためです。
UIView.animate(withDuration: 0.5, animations: { self.sampleView.frame.size = CGSize(width: 80, height: 80) self.sampleView.center = CGPoint(x: 60, y: 60) }, completion: { Void in // アニメーション完了時の処理を記述します })
次に、大きさと角丸の半径をアニメーションで変更してみたいと思います。
サンプルとして、標準カメラアプリの動画撮影ボタンのようなボタンを作成してみましょう。
実際の撮影処理はしていません。
まずは必要な宣言
let shutterView = UIView() let shutterButton = UIButton() var isRecording: Bool = false
Viewを作成するメソッドを作成します。
func makeShutterView() { shutterView.frame.size = CGSize(width: 74, height: 74) shutterView.center = CGPoint(x: 45, y: 45) let shutterCircle = UIView() shutterCircle.frame.size = CGSize(width: 76, height: 76) shutterCircle.center = CGPoint(x: 45, y: 45) shutterCircle.layer.borderColor = UIColor.white.cgColor shutterCircle.layer.borderWidth = 4 shutterCircle.layer.cornerRadius = 38.0 shutterView.addSubview(shutterCircle) shutterButton.frame.size = CGSize(width: 60, height: 60) shutterButton.center = CGPoint(x: 45, y: 45) shutterButton.backgroundColor = UIColor.red shutterButton.layer.cornerRadius = 30.0 shutterButton.addTarget(self, action: #selector(onClickRecordingButton), for: .touchUpInside) shutterView.addSubview(shutterButton) view.addSubview(shutterView) }
Apple Developer Programにアクセスし、アカウントをクリックしてサインイン
https://developer.apple.com/programs/jp/
左メニューの「Certificates, IDs & Profiles」を選択
「Certificates」の「+」をクリックして証明書を作成
その際に必要なもの:.certSigningRequestファイル
.certSigningRequestファイルの作成方法
キーチェーンアプリを起動
[キーチェーンアクセス]-[証明書アシスタント]-[認証局に証明書を要求…]を
選択して必要事項を記入して作成
「Provisioning Profiles」の「Distribution」のプロファイルを「Ad Hoc」で作成
作成が完了するとDeveloper Provisioning Profile」ファイルをダウンロードできる
ダウンロード後、該当ファイルをダブルクリックするとXcodeに取り込まれる
「Identifiers」の「App IDs」でApp IDを登録
.ipaファイルのエクスポートはXcodeの[Product]-[Archive]から行う
参考URL:
http://akiyoko.hatenablog.jp/entry/2013/11/28/224536
https://i-app-tec.com/ios/ios-app-ids.html
http://joyplot.com/documents/2016/10/29/ios-app-id-manually/
https://i-app-tec.com/ios/ad-hoc.html
http://dev.classmethod.jp/smartphone/testflight-whole-process-2016-spring-01/
UISearchControllerを使っていると、ViewControllerが破棄されるタイミングで以下のような警告が出てきました。
[Warning] Attempting to load the view of a view controller while it is deallocationg is not allowed and may result in undefined behavior (<UISearchController: ...>)
どうやらViewControllerが破棄されるタイミングでSearchControllerも破棄してやらないといけないようです。
以下のコードを追加したら解決しました。
deinit { searchController.view.removeFromSuperview() }
また、実際に検索をして別画面に遷移した際に、UISearchControllerの表示が残ったままになる問題が発生しました。
キャンセルをタップすれば消すことができますが、それでは気持ちが悪いので解決させたい。
解決方法は遷移元のUIViewControllerのviewDidonLoadに以下の1行を追加するだけです。
definesPresentationContext = true
私の場合、原因はUINavigationControllerを使っていたことでした。
こちらで詳しく解説されています。
参考URL: http://qiita.com/color_box/items/d13b04a88587088019af
Xcode: 8.3.2
Swift: 3.1
OS: Sierra 10.12
簡単に実装できるので楽ですね。
UITableViewをOutlet接続しておきます。
@IBOutlet weak var table: UITableView!
削除処理の実装
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) { if editingStyle == .delete { table.deleteRows(at: [indexPath], with: .fade) } }
Xcode: 8.3.2
Swift: 3.1
OS: Sierra 10.12