Ryusuke Fuda's Tech Blog

Softweare Enginier about Web, iOS, Android.

2014-01-01から1ヶ月間の記事一覧

iOS コアデータ画像保存、取得

ios

参考) Apple公式ドキュメント https://developer.apple.com/jp/devcenter/ios/library/documentation/iPhoneCoreData01.pdfhttp://blog.natsuapps.com/2010/04/core-data-performance_771.html

iOS背景グラデーション

ios

■ QuartzCoreフレームワークを使うとらくちん http://blog.studio-ak.jp/%E3%80%90%E3%81%A1%E3%82%87%E3%81%A3%E3%81%A8%E3%81%97%E3%81%9F%E8%B1%86%E3%83%86%E3%82%AF%E3%80%91ios%E3%81%A7uiview%E3%81%AE%E8%83%8C%E6%99%AF%E3%82%92%E3%82%B0%E3%83%A9…

iOS TableViewのCellの背景をぼかす

ios

■ 今はやりのやつ。 UIImage *logoImg = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]]; UIImageView *logoImgView = [[UIImageView alloc] initWithImage:logoImg]; //Making bokashi logoImgView.layer.shouldRasterize = YES; logoImgV…

iOS TableViewのセルをカスタム

ios

■ まずはTableViewつくるところ http://www.appcoda.com/uitableview-tutorial-storyboard-xcode5/ http://www.appcoda.com/enhance-your-simple-table-app-with-property-list/ http://tanihiro.hatenablog.com/entry/2013/11/19/234920■ 次にカスタム http…

xcode git codebreak 既存プロジェクト追加

■ まず codebreak でリポジトリ作っておく■ xcodeでプロジェクト選択して xcode > source control > {バンドル名}-master > configure > remotesタブ > add remote name は分かりやすい名前 url はcodebreakで作ったリポジトリURL■ xcode再起動 これ大事■ xc…

Android WiFi起動してるかチェック

■ 割りと簡単参考) http://miquniqu.blogspot.jp/2011/10/wi-fi.html

mysql クライアントフリーソフト

■ SSHで接続できる無料のmysqlのクライアントソフト■ Mac Sequel Pro http://www.sequelpro.com/すごい使いやすい。Windowsにもほしい■ Windows Toad for MySQL http://www.quest.com/toad-for-mysql/installに.NETも必要

mysql 複数table のデータ取得

■ 同じ構造のplayer_01とplayer_02というテーブルが複数あるときに一気にそのnicknameカラムを取得する mysql> select nickname from player_01 union select nickname from player_02; 参考) http://stackoverflow.com/questions/3571894/select-from-all-…

iOS 画面遷移 データ受け渡し segue

ios

参考) http://dev.classmethod.jp/references/first-step-multiple-view-by-storyboard/ http://kesin.hatenablog.com/entry/20120908/1347079921 http://eien.seesaa.net/article/261740269.html

iOS UIImageView イメージ切り替え

ios

■ UIImage の配列を .animationImagesで動かす @property NSArray *tutorialArr; //imageの配列定義 [super viewDidLoad]; // Do any additional setup after loading the view. // start tutorial animation _tutorialArr = [NSArray arrayWithObjects: [UI…

iOS Twitter,Facebook,LINE ソーシャル連携

ios

■ Social.framework ライブラリ追加 xcodeでプロジェクトをクリックしGeneralタブの下の方のLinked Framework and libraries の+をクリックし、Social.frameworkを追加■ 使うViewの.hファイルへライブラリインポート #import <UIKit/UIKit.h> #import <Social/Social.h> //これ追加■ てきとう</social/social.h></uikit/uikit.h>…

iOS デバッグ方法

ios

参考) http://www.raywenderlich.com/ja/50797/%E3%82%A2%E3%83%97%E3%83%AA%E3%81%8C%E3%82%AF%E3%83%A9%E3%83%83%E3%82%B7%E3%83%A5%E3%81%97%E3%81%A1%E3%82%83%E3%81%A3%E3%81%9F%E3%80%82%E3%81%95%E3%81%A6%E3%80%81%E3%81%A9%E3%81%86%E3%81%97%E3%8…

mysql 5.5以下と5.6の違い

■ mysql 5.6 はDefault not null のカラムにnullが来た時にエラーを返すが、5.5以下はその型のデフォルト値を入れてくれる。■ 5.6でもnullが来た時デフォルト値を入れる方法 /usr/my.cnf の一番下の行をコメントアウトしmysql再起動 #sql_mode=NO_ENGINE_SUB…

iOS カメラアプリ 参考URL集

ios

■ iOSのカメラアプリ作成時に参考になるURLhttp://news.mynavi.jp/column/iphone/001/index.html http://d.hatena.ne.jp/okahiro_p/20121012/1350024236 http://www.hirano-dept.com/blog/2010/02/iphone-3.html http://ameblo.jp/dokugakumono/entry-108520…