2016年12月2日金曜日

[iOS]UITableViewCellにpaddingを実装しようとしてハマった

やりたいこと
リスト表示している項目の間に隙間を作りたい

Androidならxmlで簡単に設定できるから、iOSもstoryboardだけで簡単にできる方法があるのではと探したけど、結局コード書きました。

やったこと1(項目の下だけPadding)


  • UITableViewCellのframeをオーバライドし、setされるときにframe.size.height - padding してframeを更新する
  • tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) で戻り値をCellの高さ + paddingの値で返す

import UIKit

class ListCell : UITableViewCell {

    static let paddingBottom : CGFloat = 20
    static let height : CGFloat = 478 + paddingBottom

    class func getHeight() -> CGFloat {
        return height
    }

    override var frame: CGRect {
        get {
            return super.frame
        }
        set (newFrame) {
            var frame = newFrame
            frame.size.height -= ListCell.paddingBottom
            super.frame = frame
        }
    }
}

class ListViewController: UITableViewController {

    //・・・

    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return ListCell.getHeight()
    }
}

やったこと2(項目の上下にPadding)


  • storyboardのAutoLayoutで、上下に隙間を作るConstainsを追加
  • tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) で戻り値をCellの高さ + paddingの値で返す

import UIKit

class ListCell : UITableViewCell {
    class func getHeight() -> CGFloat {
        return 518
    }
}

class ListViewController: UITableViewController {

    //・・・

    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return ListCell.getHeight()
    }
}

参考

http://stackoverflow.com/questions/19649144/ios-add-horizontal-padding-to-tableview-cells

Objective-C
http://stackoverflow.com/questions/2539021/how-to-set-the-width-of-a-cell-in-a-uitableview-in-grouped-style

Swift
https://www.reddit.com/r/swift/comments/2fr849/uitableviewcell_with_custom_width_in_swift/?st=iw6l44mk&sh=fd1d9a6e

2016年5月22日日曜日

Free Apple Developer Acountの使用でハマったこと

環境

OS X El Capitan
Xcode7.3

Free版で実機にインストールできるけど。。。

  • インストール後起動できるようにするのが面倒
  • アプリ起動時はネットワークが接続されている状態になっている必要がある

現状の起動許可の設定方法

設定 > 一般 > デバイス管理 > デベロッパAPPでアカウント選択 > ○○を信頼を選択


デベロッパー登録して、アプリの申請へ

Free版で使用していたBundle Idが登録できない

Xcode7から、Bundle Idの自動登録がされる関係か、Free版で使用していたBundle Idが、Register iOS Apps IDs で登録できない状態になっていました。

Free版で登録したBundle Idは、自分で編集や削除はできないようです。。。
参考
http://stackoverflow.com/questions/33432903/remove-app-id-with-free-apple-developer-account

アップルへFree版で使用したBundle Idの削除要請

https://developer.apple.com/contact/submit/

I want to remove app id "(Bundle Id)"  with free Apple Developer Account

なメッセージを送りました。
結果は後日追記。


2016/6/10 追記
問い合わせの返事はすぐ日本語でメールが来ました。
削除できるIDか確認するため、理由の提示を求められました。

最初の問い合わせから1週間後くらいで削除完了のメールがきました。
BundleIDをどうしてもこれがいいって理由でないのであれば、違うBundleIDを生成し直してリリースしたほうが楽そうです。

※審査に提出したバイナリのBundleIDは途中から変更することは不可能なので注意