UIアイテムに表示させるフォントの色などの設定
self.TextLabel = [self newLabelWithPrimaryColor:[UIColor colorWithRed:0.0 green:0.5 blue:1.0 alpha:1.0]
selectedColor:[UIColor whiteColor] fontSize:14.0 bold:YES];
上記のようにす…
要素Aが配列Bの中に存在するか調べるには in_array を使う。
以下の例では、配列Bの中に要素Aが存在するので「Got elementA」が出力されます。
$arrayB = array(“elementA”, “NT”, “Irix”, “Linux”);
if (in_array(“elementA”, $arrayB)) {
echo “Got elementA”;
}
この投稿へのコメント
コメントはまだありません。