「ios開発」Swiftの列挙(Enumeration )の基本使い方
1.enumメソッド
enum SomeEumeration {//enumeration definition goes here }
enum CompassPoint { case North case Sout ...
「ios開発」CGImageRefとUIImageをお互いに変換するサンプルプログラム
1.CGImageRefからUIImage CGImageRefへの変換
コード下記:
iOffscreen = CGBitmapContextCreateImage(context);
UIImage* im ...
「ios開発」iOSで文字列から一部分を取り出すサンプルプログラム
コード下記:
#import “NSString+StringToWords.h”
@implementation NSString (StringToWords)
– ...
「ios開発」UIGestureRecognizerでを識別するサンプルプログラム
1.一本の指で2度の手振を叩くジェスチャー
コード下記:
//ジェスチャー認識装置を作成
UITapGestureRecognizer *oneFingerTwoTaps =
initWithTarge ...
「iOS開発」iosでSQLiteの基本的なデータベース操作
1.ライブラリをインポート
#import “/usr/include/sqlite3.h”
2.データベースを開く
int sqlite3_open(
const char ...
UITapGestureRecognizerを利用してタッチイベントのモニタリング機能を実現する
コード下記:
– (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launc ...
iosでnavigation itemシステムアイコンと文字色を設定する
コード下記:
];//サンプルコード
「iphone開発」数値float型から文字列値への変換する方法
コード下記:
– (NSString*) numberToMathString:(float) num
{
NSArray * array = componentsSeparatedByStrin ...
xcodeプロジェクト(ios、mac)でバージョンを増えるスクリプト
rubyコード:
#!/usr/bin/env ruby
require ‘find’
filename = ‘info.plist’
exp =/( ...
「ios入門」IOSでナビゲーションバーをカバーする方法
コード下記:
KWAppDelegate *delegate = .delegate;
;
「IOS開発」簡単ナウローディング表示ライブラリ MBProgressHUDの使い方
サンプルコード下記:
#import “MBProgressHUDManager.h”
@property (nonatomic, strong) MBProgressHUDManager ...
「ios開発」ComboBoxをカスタマイズするサンプルプログラム
Objective-Cコード下記:
#import <UIKit/UIKit.h>
#import “CCButtonDelegate.h”
#define ROW_HEIG ...
「ios開発」UIImageViewを利用してイベントクリック動作を追加する方法
コード下記:
UIImageView *imageView = ;
imageView.image = ;
imageView.userInteractionEnabled = YES;
UITapGe ...
「ios開発」ios画像を移動、ズームするサンプルプログラム
コード下記:
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#import “NetworkHelp ...
「IOS開発」UITabarControllerを使用してカスタマイズサンプルプログラム
コード下記:
1.CCTabBarController.h
#import <UIKit/UIKit.h>
@interface CCTabBarController : UITabBarContr ...
「ios入門」ios開発環境にXcode4でのデバック方法を設定する
Debug方法を設定する:
Xcode4: Edit-Scheme-Arguments
Xcode4.2 product->edit scheme
次の3つの値をyesに設定する
NSAu ...
「ios開発」jsonライブラリを使用する時[NSCFString JSONValue]: unrecognized selector sent to instanceの対策
エラーメッセージ:
: unrecognized selector sent to instance
解決対策:
プロジェクトのBuild Settingに「OTHER_LINKER_FLAGS」を見つける ...
「ios開発」iosでUIWebViewの背景色を透明にする方法
設定方法:
web_about.backgroundColor = ;
web_about.opaque = NO;
<body style=”background-color: transp ...