「Swift学習」convenienceを利用するサンプルコード
コード下記:
class Figure{
var name:String!
var nickname:String?
init(){
name = “美穂”
} ...
「Swift学習」subscript syntaxを利用するサンプルコード
サンプルコード:
struct startnews24 {
let offset:Int
var textCount:Int
subscript(index:Int) -> Int{
ge ...
Swiftのclass varを利用するサンプルコード
コード下記:
struct SomeStructure {
static var storedTypeProperty = “Some value.”
static var comput ...
「Swift学習」in-outのサンプルコード
サンプルコード:
func swapTwoInts(inout a: Int, inout b: Int) {
let temporaryA = a
a = b
b = temporaryA
「IOS開発」iphone5sアップロードした画像が回転して表示されるのを直す方法
exifの php拡張を有効にする
PHPコード:
<?php
$exif = exif_read_data($filename);
$ort = $exif;
$image = ...
[Objective-C]文字列配列を定義する方法
コード下記:
#inport<Foundation/Foundation.h>
int main(int argc, char *argv = {“startnews24_aa” ...
[Objective-C]ファイルを介して間接的に文字列を読む方法
コード下記:
#inport<Foundation/Foundation.h>
int main(int argc, char *argv;
while(fgets(word, 100, wor ...
「ios開発」strongとweakの使い方
1.strong(retainと似ている):
@property (nonatomic, strong) NSString *tempStr1;
@property (nonatomic, strong) NSStri ...
[ios開発]NSDateとNSCalendarを利用して具体的な時間を取得するサンプルコード
サンプルコード:
NSDate *nowDate = ;//現在時間
NSCalendar *calendar = ;
NSDateComponents *comps;
comps = ;
in ...
「IOS開発」calendarからNSdateに変換するサンプルコード
サンプルコード:
NSCalendar *calendar = ;
NSDateComponents *comps;
comps = init]];
;//+24次の日date,-24は前の日da ...
「ios開発」json文字列をアペンドする
サンプルコード:
-(NSString *) getJsonString
{
NSMutableString *json = ;
NSString *jsonString=nil;
SBJson ...
「ios開発」NSDictionaryを利用して多重ネストされたjson文字列をスプライス
サンプルコード:
NSDictionary *dataDictionary= ;
NSDictionary *parmDictionary= ;
NSDictionary *jsonDictionary=; ...
「ios開発」SBJsonを利用してjsonを解析、操作する
1.ダウンロードURL
NSData * responseData = ;
NSString * strResponser = initWithData:responseData encoding:NS
herokuを利用してnode.jsを導入する手順
操作方法:
1.herokuアカウントを新規登録する
URL:
2.herokuのコマンドツール(toolbelt)をダウンロード
mac環境でhomebrewでインストール
br
「iOS入門」swiftを利用してシステムバージョン情報を検査するサンプルコード
1.稼働中のシステムのバージョン番号を取得
let version = UIDevice.currentDevice().systemVersion
//例: 7.1.2
2.バージョン番号を比較
「ios入門」iosでudidを取得するサンプルコード
サンプルコード:
-(void) setKeyChainValue
{
KeychainItemWrapper *keyChainItem=initWithIdentifier:@”TestUUID ...
Objective-C でシングルトンパターン(Singleton)のサンプルコード
サンプルコード:
static Config * instance = nil;
+(Config *) Instance
{
@synchronized(self)
{
if(nil ...
IOSインストール後初めて起動するかどうかを判断する方法
サンプルコード:
if(! boolForKey:@”firstLaunch”]){
setBool:YES forKey:@”firstLaunch”];