- 発表者:
- 日時:
- 2013.03.02
- 場所:
- iOS部 @下北沢オープンソースCafe
- テーマ:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context | |
{ | |
if (![NSThread isMainThread]) { | |
dispatch_async(dispatch_get_main_queue(), ^{ | |
[self observeValueForKeyPath:keyPath ofObject:object change:change context:context]; | |
}); | |
return; | |
} |
- 発表者:
- 日時:
- 2013.07.13
- 場所:
- iOS部 @下北沢オープンソースCafe
- テーマ:
- iOctocat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ "${CONFIGURATION}" == "Debug" && "${PLATFORM_NAME}" != *simulator* ]]; then | |
plist="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}" | |
ip=$(ifconfig en0 | grep "inet[^6]" | cut -d" " -f2) | |
url=$(/usr/libexec/PlistBuddy -c "Print :APIBaseURL" $plist) | |
url=$(echo $url | sed "s|\(http://\)[^:/]*\(.*\)|\1$ip\2|") | |
/usr/libexec/PlistBuddy -c "Set :APIBaseURL $url" $plist | |
fi |
- 発表者:
- 日時:
- 2014.02.23
- 場所:
- ソースコード
- hedjirog/ForceDirectedLayoutDemo
iOS向けライブラリ/アプリのテスト手法について調査した内容。
- すべてSpectaを利用した記述
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "KeyboardViewController.h" | |
@interface KeyboardViewController () | |
@end | |
@implementation KeyboardViewController | |
- (void)updateViewConstraints { | |
[super updateViewConstraints]; |
- WebエンジニアのためのiOSデバッグ速習会@Wantedly
- http://wantedly.connpass.com/event/23093/
- 2015.11.26 19:30~21:00
- RxSwift+MVVMハンズオン勉強会@Wantedly
- https://wantedly.connpass.com/event/61426/
- 2015.11.26 19:30~21:00
- 実践 iOSアプリ開発 - ReactorKitを利用した設計手法 速習会@Wantedly
- 題材アプリ
- GitHub のリポジトリの検索と閲覧
- https://github.com/hedjirog/GitHubSearch