Tabs

iPhone&Androidのアプリ制作・デザイン

*

乱数のこと

      2014/11/02


乱数(ランダムな数)を取り出す際 rand や arc4random を使用しますが、何度も使うと取り出す数に偏りが出てきてしまいます。

randの例:
int randInt = rand() % 100;

arc4randomの例:
int randInt = arc4random() %100;

arc4random_uniformを使用することで偏りを軽減することができます。
以下 arc4random_uniform の参考

int randInt = arc4random_uniform(100);


 - Begin

  関連記事

eyechatch_xcode_tips-300x300
.selected

インスタンス名.selected で BOOLを宣言せずにボタンのON/OFF状 …

eyechatch_xcode_tips-300x300
SNS連携

Twitter・Facebookとの連携は #import <Social …

no image
UIImageView 画像の差し替え

[UIImageView alloc] 後の画像を変換する時は下記コードを参照し …

no image
UILabelをコードで生成(Tips付)

Main Storyboard (IB)に用意されている Label を使わずに …

no image
iPhone画面サイズ

3.5inch 320 x 480px (Retina 640 x 960px) …

no image
ステータスバーを隠す方法

Deployment Info の Status Bar Style 下部にある …

no image
BGM・SE 導入方法

音楽:導入方法 1… AVFoundationフレームワークを追加 2… hファ …

no image
UIImageViewにボタンを貼りたい場合

タイトル画面などを作りたい場合、UIImageViewを使用して背景などを作るこ …

eyechatch_xcode_tips-300x300
配列にNSNumberをぶちこむ

配列から数値を直に取り出したい場合はどうするのかと調べてみたのでメモ。 NSNu …

no image
画面ローテーション

画面ローテーションを制御する場合は下記を追加する – (BOOL)s …