IOS

サンプルコード:
//DocumentsディレクトリにLaunchImageフォルダを作成
NSString *path = stringByAppendingPathComponent:@”Launch ...

IOS

1.jsonからdictへ解析
-(void)fetchedData:(NSData*)responseData {//parse out the json dataNSError* error;
NSDictiona ...

IOS

サンプルコード:
– (void)showActionSheetPicker {
UIView *masterView = initWithFrame:CGRectMake(0, 0, self.view ...

IOS

ダウンロード
提供元サイトからダウンロード

対象OS:
64-bit Mac OSX only. OSX requirement is 10.8.3 or later

IOS

1.SSToolkit (UIライブラリ)

SSToolkit is a collection of well-documented iOS classes for making life easier by solvin ...

IOS

1.Xcode5 アプリ名(app name)を取得
NSString *proName = infoDictionary] objectForKey:@”CFBundleDisplayName”]; ...

IOS

処理コード:

<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE plist PUBLIC ̶ ...

IOS

コード下記:
#pragma mark
//アップロード開始
-(void)uploadingStart:(NSNotification *)notification
{
NSLog(@R ...

IOS

1.文字列の定数を作成

NSString *string1=@”これは文字列定数です”;
//空の文字列を作成
NSString *string2=init];
NSStri ...

IOS

1.文字列を挿入
NSMutableString *string19=initWithFormat:@”startnews24_welcome”];
;
NSLog(@”%@ ...

IOS

1.不変配列–NSArray

1.1 配列の初期化
NSArray *firstArray=;
//複数の要素を初期化する時、nilで配列の終わりに注意
NSArray *secondA ...

IOS

1.不変辞書-NSDictionary

1.1 初期化操作
NSDictionary *dict1=;
NSLog(@”%@”,dict1);//複数の要素を初期化
NSDi ...

IOS

1.初期化
NSSet *set1=initWithObjects:@”one”,@”tow”, nil];
NSLog(@”%@”,set1); ...

IOS

1.ファイル宣言:

#import <Foundation/Foundation.h>
@interface NSArray (Convert) +(NSMutableArray *)arrayForm ...

IOS

1.プロトコロのキーワード
@required:強制的実現
@optional:選択的な実現

2.宣言
//プロトコロの宣言
#import <Foundation/Foundatio ...

IOS

1.値を割り当てる
assign、retain、copyの使い方
サンプルコード
@property (assign)Person *person;
@synthesize person=_person ...

IOS

コード下記:
//ピクチャビューを作成
UIImageView *imageview=initWithFrame:CGRectMake(140, 100, 45, 45)];
//ハイライトを設定
im ...

IOS

 

1.親クラスVehicle.h
#import <Foundation/Foundation.h> @interface Vehicle : NSObject { @private NSS ...