2012年3月23日金曜日

ab-Camera







これはカメラアプリです。

このアプリの機能は
・全画面表示
・ライトのON/OFF
・フラッシュのON/OFF

Is the camera app.

ab-Camera Features
•"Full screen"
•"Configuring the flash ON / OFF"
•"Configuring the Torch ON / OFF"

2011年5月15日日曜日

Seach Tool









■ アプリケーション説明

UPnP ( Universal Plug and Play ) とは、ネットワークに接続された様々なデバイスを認識、制御するプロトコルです。

"Seach Tool"は、UPnP対応機器の機器情報を表示します。
※iPhone/iPod touch/iPadがWi-Fi接続している必要があります。

取得情報
・IPアドレス ( IP Address )
・機器名 ( Friendly Name )
・ベースURL ( URL Base )
・デバイスタイプ ( Device Type )
・会社 ( Manufacurer )
・会社URL ( Manufacturer URL )
・デバイス詳細 (Model Description )
・モデル名 ( Model Name )
・モデル番号 ( Model Number )
・モデルURL ( Model URL )
・シリアル番号 ( Serial Number )
・UUID ( UDN )
・ユニバーサルプロダクトコード ( UCP )
・プレゼンテーション ( Presentation URL )

■ Application Description

UPnP (Universal Plug and Play) and is aware of the various devices that are connected to the network control protocol.

"UPnP Seach" is, UPnP-enabled devices display the device information.
※ iPhone / iPod touch / iPad must be Wi-Fi connection.

Information
・ IP Address
・ Friendly Name
・ URL Base
・ Device Type
・ Manufacurer
・ Manufacturer URL
・ Model Description
・ Model Name
・ Model Number
・ Model URL
・ Serial Number
・ UDN
・ UCP
・ Presentation URL

information

2011年5月6日金曜日

UPNP Search





■ アプリケーション説明

UPnP ( Universal Plug and Play ) とは、ネットワークに接続された様々なデバイスを認識、制御するプロトコルです。

"UPnP Seach"は、UPnP対応機器の機器情報を表示します。
※iPhone/iPod touch/iPadがWi-Fi接続している必要があります。

取得情報
・IPアドレス ( IP Address )
・機器名 ( Friendly Name )
・ベースURL ( URL Base )
・デバイスタイプ ( Device Type )
・会社 ( Manufacurer )
・会社URL ( Manufacturer URL )
・デバイス詳細 (Model Description )
・モデル名 ( Model Name )
・モデル番号 ( Model Number )
・モデルURL ( Model URL )
・シリアル番号 ( Serial Number )
・UUID ( UDN )
・ユニバーサルプロダクトコード ( UCP )
・プレゼンテーション ( Presentation URL )

■ Application Description

UPnP (Universal Plug and Play) and is aware of the various devices that are connected to the network control protocol.

"UPnP Seach" is, UPnP-enabled devices display the device information.
※ iPhone / iPod touch / iPad must be Wi-Fi connection.

Information
・ IP Address
・ Friendly Name
・ URL Base
・ Device Type
・ Manufacurer
・ Manufacturer URL
・ Model Description
・ Model Name
・ Model Number
・ Model URL
・ Serial Number
・ UDN
・ UCP
・ Presentation URL

2011年3月19日土曜日

最近購入した本を列挙したいと思います。














2010年9月17日金曜日

NSUserDefaults オブジェクト保存 ①文字列、数値

保存方法
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
// BOOL保存
[defaults setBool:YES forKey:@"BOOL"];
// 文字列保存
[defaults setObject:@"TESTSTRING" forKey:@"STRING"];
// 数値保存
[defaults setInteger:20100917 forKey:@"INTEGER"];

読み込み
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
// BOOL読み込み
BOOL bool = [defaults boolForKey:@"BOOL"];
// 文字列読み込み
NSString* string = [defaults stringForKey:@"STRING"];
// 数値の読み込み
int integer = [defaults integerForKey:@"INTEGER"];