tmp
Saturday, October 31, 2015
LoVA Tool 使い魔別レポート追加
使い魔別の使用率、勝率ページ追加 * http://lova-fiahfy.rhcloud.com/servants/1/#statistics 形式すべて(7v7, 5v5, ソロアリーナ)のデータしか取ってないので、別にして取得したいところ \+使い魔全体でのレポートも追加したい **Site**
**Issue**
Monday, October 26, 2015
NSAttributedString いろいろ
###text color ```swift let attributes = [ NSForegroundColorAttributeName: UIColor.redColor() // 文字色指定 ] let attributedString = NSAttributedString(string: "foo", attributes: attributes) ``` ###text shadow ```swift let shadow = NSShadow() shadow.shadowColor = UIColor.blackColor() // 影の色指定 shadow.shadowBlurRadius = 4 // 影のぼかし半径 shadow.shadowOffset = CGSizeMake(2, 2) // 影の位置 let attributes = [ NSShadowAttributeName: shadow ] let attributedString = NSAttributedString(string: "foo", attributes: attributes) ``` ###line space ```swift let style = NSMutableParagraphStyle() style.lineSpacing = 7 let attributes = [ NSParagraphStyleAttributeName: style ] let attributedString = NSAttributedString(string: "foo", attributes: attributes) ```
ぼかし効果のあるViewの作成
```swift view.effect = UIBlurEffect(style: .Light) ```
UICollectionViewCell の Focus を操作する
`UICollectionView` にFocusが当てられた時にFocusするCellを指定したい場合 まず↓を記述 これだけだと最後にFocusが当てられたCellがFocusされる ```swift collectionView.remembersLastFocusedIndexPath = true ``` 加えて `UICollectionViewDelegate` の `indexPathForPreferredFocusedViewInCollectionView` を実装する これで任意のindexPathのCellにFocusが当てられる ```swift func indexPathForPreferredFocusedViewInCollectionView(collectionView: UICollectionView) -> NSIndexPath? { return NSIndexPath(forItem: 0, inSection: 0) } ```
Friday, October 23, 2015
upload, submit error by CFBundleShortVersionString
10/20?以降 `CFBundleShortVersionString` がどうのこうのと言われてuploadやsubmitができない件について どうやら CocoaPods や Carthage などの依存管理ツールで入れたライブラリの `Info.plist` 上の `CFBundleShortVersionString` がよろしくない所為で起こっているらしい `x.x.x` って形式じゃないとダメぽい? なので `Podfile` に↓のコードを追加して `pod install` 時に無理やり整えてあげるようにする https://gist.github.com/fiahfy/960b4483dd2efdd5cead `1.0.0.pre` -> `1.0.0` `2.0` -> `2.0.0` みたいな感じに整えられます ##参考 * https://github.com/CocoaPods/CocoaPods/issues/4421
Tuesday, October 13, 2015
markdown確認用
# 見出し1 ## 見出し2 ### 見出し3 #### 見出し4 ##### 見出し5 ###### 見出し6 * リスト1 * リスト2 * リスト3 1. 番号付きリスト1 1. 番号付きリスト2 1. 番号付きリスト3 > 引用 > 引用 > 引用 あああああ `code` あああああ あああああ *強調* あああああ あああああ **強調** あああああ あああああ ***強調*** あああああ https://www.google.co.jp/ ~~取り消し線~~ ```javascript class MyClass { constructor() {} } ``` |ヘッダ|ヘッダ|ヘッダ| |:--|--:|:--:| |内容|内容|内容| |内容|内容|内容|
LoVA Tool 機能追加
転成儀シミュレータとランキングページ(雑)追加 ランキングデータを蓄積するようにしたのでグラフ化すると面白いかも ###Site
###Issue
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)