AVIからSWFファイルに変換する際に便利なソフト
MotionSWF
http://www.vector.co.jp/soft/dl/win95/art/se226046.html vps…
ピックアップ記事
AVIファイルからSWF作成 MotionSWF
2010年10月07日
過去Blog
UITableView のcellの複数選択を実装する
2011年01月25日
過去Blog
//セルが選択された際に呼び出される
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//選択されたセルを取得
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
/…
表示領域外部(上部)にラベルを配置し、フリックにて表示させる
2010年12月17日
過去Blog
画面にテーブルビューが表示されている(XCodeテーブルテンプレート)を想定しています。以下の画像はtabBar,Navigationなど入っていますが、気にしないでください。
…
PHP での SimpleXML 処理>>RSS取得
2009年12月05日
過去Blog
phpでrssの情報を抜き出したい場合は、titleやlinkの要素は以下の通りで抜き出せます。
<?php // Load and parse the XML document
$rss = simplexml_load_file('http://partners.userland.com/nytRss/nytHomepage.xml');
$title = $rss->channel->title;
?>
…
[PHP]Cannot use object of type stdClass as array
2011年03月24日
過去Blog
根本的な解決ではないかもしれませんが、「Cannot use object of type stdClass as array」エラーが出る場合は、配列の扱い方を以下のように変更する事で解決しました。
$row["catID"]
↓
$row->catID
graffiti on the web
この投稿へのコメント
コメントはまだありません。