べすとえふぉーと

プログラミング等のノート 

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

 バグの見つけ方

簡単にポイントだけ てきとーに書きます・原因をぼやーっと考える(どの辺かなー ここで時間はかけない 発生したバグのサマリーからとりあえず想像するくらい・バグが出る時の挙動をよく観察する 原因のあたりがつけにくいバグもよーく観察する・出ない時の…

iAdの更新

iOS

iAdの更新周期についてiTunesConnectの右下にあるこれこのiAdの集計は2時間おきに更新してるみたい。 (偶数の時間)正確な時間はちゃんと測ったりできないからワカンナイ

iAdについての注意点

ios

18歳以上向けのAdに設定 ↓ 広告が1種類しか出ない上にFill Rateが良くない ↓ やっぱり変更しよう ↓ 後からは変えられないんだった オワタ\(^o^)/となるのでiAdの初期設定は慎重に

GAEでjsonを出力する

とりあえずいんぽーと import wsgiref.handlers from django.utils import simplejson from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.ext import db吐き出す部分 class MainPa…

We found that your app and/or its metadata does not appear to include final content

ios

Appleの審査で3.2で弾かれた場合 We found that your app and/or its metadata does not appear to include final content, which is not in compliance with the App Store Review Guidelines. Specifically, your app contains placeholder text in the Ap…

Did not include iOS features

ios

Appleの審査で 10.6 - Did not include iOS features. For example, it would be appropriate to use native iOS buttons and iOS features other than just web views, Push Notifications, or sharing.でリジェクトされた場合はUIに原因がある場合が考えれ…

閉じるボタンをQuartzCoreだけでつくる

iOS

QuartzCore.frameworkをBuildSettingで追加してimport #import <QuartzCore/QuartzCore.h>とりあえずalloc UIButton *XButton = [[UIButton alloc]initWithFrame:CGRectMake(10, 10, 40, 40)];背景を黒に [XButton setBackgroundColor:[UIColor blackColor]];ボタンの外枠を白で描画 [</quartzcore/quartzcore.h>…

NSTimerを止める時の注意点

iOS

NSTimerを止めてEXC_BAD_ACCESSになることがある 対処法はnil代入タイマの部分 TestTimer = [NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(HogeHoge) userInfo:nil repeats:YES];invalidateで止めてからnil代入 -(void)Hoge…

JMTabViewの使い方

iOS

てきとーに書いてきますViewControllerでdelegate @interface MainViewController : UIViewController

Pythonで日本語を扱う時によく出るエラー

ascii' codec can't encode みたいなエラーが出た時のおまじない GetString = unicode( TargetString ,'utf_8')とりあえずこれでおk

PushNotificationの試し方

iOS

三ヶ月前の古いメモを書き起こしてるんで不正確かも わからなかったり引っかかったりしたらおググりになって下さい。 [1]iOS DevのOverviewを開く (https://developer.apple.com/ios/manage/overview/index.action) [2]App IDsを開く(https://developer.a…