IOS開発エラー現象「libxml2 not found during build」の対策
エラーメッセージ:
libxml2 not found during build
解決方法:
「Header Search Paths」下のDebugとreleaseに次の内容を設定
${SDKRO ...
Objective-Cでinitまたはdeallocメッソッドにaccessorを使用しないサンプル
原因:
サブクラスは親クラスのaccessorメソッドをオーバーライドして、accessorメソッドを変更する可能性がある
コード下記:
#import <Foundation/Foundat ...
「Objective-Cの入門」iOSで NSDate日付を操作するサンプルプログラム
Objective-Cコード下記:
NSDate *update = objectForKey:APP_UPDATE_TIME];
CGFloat dayDifference;
if (update) { ...
「Objective-Cの入門」タイムスタンプをするサンプルプログラム
Objective-Cコード:
-(NSString *)timeStamp:(NSString *)data
{
//タイムスタンプ
NSDateFormatter *formatter = i ...
「Objective-Cの入門」オブジェクトを印刷するサンプルプログラム
Objective-Cコード下記:
+ (NSDictionary*)getObjectData:(id)obj
{
NSMutableDictionary *dic = ;
unsigned in ...
Mac os 10.7.4にoci8をインストール
1.oracleクライアントをダウンロード
URL:
解凍して次のコマンドを実行:
ln -s instantclient_10_2/libclntsh.dylib.10.1 instantclient_10_ ...
UILabelにコンテンツのサイズを計算する
1.UILable+LM.h
#import <UIKit/UIKit.h>
@interface UILabel (LM)
– (CGSize)contentSize;
IOSプログラムを終了するサンプルコード
サンプルコード:
-(void) tapClick:(UITapGestureRecognizer *)tap{
;
;
;
;
;
//self.view.window.b ...
IOSでRunLoop基本操作をするサンプルコード
コード下記:
-(void)runTimerInThread
{
;
//自動的にRunLoopにNSTimeerを追加
NSTimer* timer=;
//自動的にR ...
IOS開発基本知識:ファイルパス
1.開発プラットフォームのパス
/Developer/Platforms
MacOSX.platform //mac
iPhoneSimulator.platform//シミュレータ
iPhon ...
NSCodingとNSCopyのサンプルプログラム
コード下記:
– (id)initWithCoder:(NSCoder *)aDecoder
{
self = ;
if (self) {
self.country = ; ...
IOSでplistファイルを読み込む方法
コード下記:
NSBundle *bundle = ;
//プロパティリスト名Property List リソースタイプplist
NSString *path = ;
//plistにNSDictio ...
IOSでUITabBarControllerを操作するサンプルプログラム
サンプルコード:
RViewController1 *vc1 = init];
UINavigationController *navController = initWithRootViewController: ...
IOSでtoolbar(ツールバー)の操作
self.navigationItem.title=@”ツールバーを表示”;
//ツールバーを表示
//self.navigationController.toolba ...
macでフォルダを非表示する
表示:
defaults write com.apple.finder AppleShowAllFiles -bool true
非表示:
defaults write com.apple.finder ...
swiftをターミナルで実行するふ2つ方法(PATH変更、xcunコマンド)
1.swiftパスをpath環境変数に追加
次のパスを環境変数に追加する:
Applications/Xcode6-Beta.app/Contents/Developer/Toolchains/XcodeDefault ...
「Command /usr/bin/codesign failed with exit code 1」の解決対策
対策:
sudo ln -s/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate/usr/bin
MacでCocoaPodsをインストール
1.CocoaPodsをダウンロード
URL:
2.cocoapodsのインストール
sudo gem install cocoapods
3.エラーメッセージ:
ERROR: Er ...