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

Chassidy Szocik

Chassidy Szocik こんにちは Chassidy Szocik と申します。 よく知られている国際的なリークルート会社で人事部の部長を勤めています。 以下の情報をよく読んで頂きたいと思います。 貴方に合った高賃金で素晴らしい仕事に複数空が出ています。 コンサルタン…

memo

http://www.exoticvps.com/ http://serverbear.com/vps unmetered

UITbableをコードだけで書くサンプル:シンプル版

@interface ViewController () <UITableViewDataSource,UITableViewDelegate> @property NSMutableArray *items; @end @implementation ViewController @synthesize items; - (void)viewDidLoad { [super viewDidLoad]; items = (NSMutableArray *)@[@"a",@"b",@"c"]; UITableView *myTableView = [[UITa</uitableviewdatasource,uitableviewdelegate>…

tableView関連めも

UItableViewでUITableCellの選択時に別ページに移動 1.移動させたいページ同士をstoryboardで結ぶ。(modal) 2.segueにID設定する 3.ViewController.m - (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [s…

xcode5/iosのwebviewでローカルJSが実行できない時

1日悩まされた〜 コンパイラーの問題だったー 要点 問題:ローカル(supporting Files)に置いたhtmlやimgは読めるのにjsファイルだけ読み込まれない。 原因:xcodeはjsファイルはソースだと思ってコンパイルされてしまうので消滅してしまう 解決策:回避する…

UITableViewめも

Basicly editeble UITable editable add delete source ViewController.h を追記してtable関連の関数を処理できるようにする ... @interface ViewController : UIViewController <UITableViewDelegate,UITableViewDataSource> ... ViewController.m #import "ViewController.h" #import "TACell.h" #impo</uitableviewdelegate,uitableviewdatasource>…

カスタムセルの作り方

UITableview用のcellはカスタマイズができる。 3列のテーブル作成 #import "ViewController.h" #import "TACell.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UITableView *myTableView; @end @implementation ViewController - …

UITableViewを使うときにdelegate & dataSouceで警告がでる時

error message Assigning to 'id<UITableViewDelegate>' from incompatible type 'ViewController *const __strong' .hファイルの@interface @interface ViewController : UIViewController <UITableViewDelegate,UITableViewDataSource> delegate 参考資料 http://www.objectivec-iphone.com/introduction/delegate/delegate.</uitableviewdelegate,uitableviewdatasource></uitableviewdelegate>…

データ保持用クラス NSUserDefaults

keyを元に呼び出せる便利クラス アプリが終了しても保持し続けるので、前回の設定を保持したい時などに使う。 - (void) hoge { NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; //読み出し if([[defaults stringForKey:@"key"] isEqualT…

AVAudioPlayerの複数再生時のメモリリークの対策方法

AVAudioPlayerを複数立ち上げて音を二重で再生させると、 アプリ終了時、またはアプリ強制終了時にメモリリークする。原因はよくわからんけど、それぞれのプレイヤーでcurrentTimeを0に設定したら落ちなくなった。 その他めも [audio1 stop]しても駄目だった…

UILabelのclickイベントを拾う

- (void)viewDidLoad { [super viewDidLoad]; UILabel * myLabel = [[UILabel alloc] init]; myLabel.frame = CGRectMake(100, 100, 100, 50); myLabel.text = @"myLabel"; myLabel.userInteractionEnabled = YES; [myLabel addGestureRecognizer: [[UITapGe…

xcode 音声読み上げ

音声読み上げ関数。 [self speech:string] #include <AVFoundation/AVFoundation.h> .. @implementation ViewController{ AVSpeechSynthesizer *speechSynth; } - (IBAction)pressButton:(id)sender { [self speech:self.myText.text]; } - (void) speech : (id) str{ speechSynth = [[AVS</avfoundation/avfoundation.h>…

FC2 VPSのセットアップめも

最初は何もはいってないので nslookup satoru.net -bash: nslookup: command not found nslookupができない。 yum -y install bind-utils これでおk そのほか crontab yum install crontabs ntpdate これはvpsだとできないっぽいので cp /usr/share/zoneinf…

FC2 VPSでntpdateできない時の対処法

$ sudo yum -y install ntp $ sudo ntpdate ntp.nict.jp 6 Feb 15:53:16 ntpdate[22434]: Can't adjust the time of day: Operation not permitted と怒られて設定できない時の対処法。 rootなのに出来ないとか、なんでー?って思ってググったら Virtuozzoの…

epel install && mod_extract_forwarded

Apacheの便利モジュール reverse proxy時に$ENV{HTTP_X_FORWARDED_FOR}を$ENV{REMOTE_ADDR}に自動変換する方法 mod_extract_forwarded をインストール (epelも追加) epelがない場合(64bit/centos6) cd /usr/local/src/ wget http://ftp-srv2.kddilabs.jp/L…