Objective-C

コードで作成したボタンにイベントを付与, titleLabel を意図的に改行

何がしたいか UIButton をコードで作成し、UIViewController に addSubview で表示する 表示したボタン にイベントを付与する(addTarget で) の titleLabel を意図的に改行させる 前提 iOS 8.3 シミュレーター iPad Air 登場人物 ButtonsViewController(.xib…

Mac + 日本語キーボードでバックスラッシュを打ち込む時

option + エンマーク Macにおけるバックスラッシュ(\)の入力方法 - Qiitaqiita.com

UIButton の底(bottom) だけ境界線を太くする

やること 甲. UIButton の境界線太さを設定しました 乙. 底(bottom) の境界線だけ更に微調整で太くしたくなりました (立体的な影をつけるイメージ) 乙. を実現する 前提 iOS 8.1 iPad Air (シミュレーター) 登場人物 CustomButtonsViewController(.xib | .h …

UIButton にリサイズした画像を埋め込む

後述の「課題」が残った方法である事、ご承知下さい やること left_arrow.png(130x46 x1) を (50x50 x1) へ等比率画像に変換する 変換画像をボタン(200x200) に埋め込む 前提 iOS 8.1 iPad Air (シミュレーター) 登場人物 CustomButtonsViewController(.xib …

xib のモックレイアウト(ボタン)をコード内部処理で変更する

やること xib で作成したモックのボタンレイアウトを コードで内部処理して 下を例としたボタンレイアウトに変更する 前提 ストーリーボードは使わない iOS 8.1 登場人物 CustomButtonsViewController(.xib | .h | .m) 内部処理 .xib .h #import <UIKit/UIKit.h> @interface</uikit/uikit.h>…

Incompatible pointer types initializing 'UIButton *' with an expression of type 'UIView'

xib に view - viewButton を設置 viewButton へ UIButton を 1 個設置 このボタンのレイアウトをコードで変更するときに from のコードを書くと表題のエラーが出る ので、to にすればよい from UIView *buttonView = self.viewButton.subviews[0] to UIView…

UISplitViewController で 2 つの ViewController を 1 つの画面に表示する

UISplitViewController で 2 つの ViewController を 1 つの画面に表示する 結果イメージ 前提 Storyboad, Segue は使わない Xcode 6.3.1 iOS 8.1 登場人物 LabelsViewController(.xib | .h | .m) (左側に出す画面) ButtonsViewController(.xib | .h | .m) (…

delegate(デリゲート) は 何か, 何ができるのか

delegate(デリゲート) は 何か 他のオブジェクトがイベント通知を受けた時 このオブジェクトの代わりにアクションを実行するオブジェクト an object that acts on behalf of another object when that object encounters an event in a program 何ができるの…

presentViewController を使って値を受け渡す(渡される)

結果イメージ テキストフィールドに @"out me" を入力 Send ボタンを押下する 別画面が開いて @"out me" が表示される 前提 Storyboad, Segue は使わない Xcode 6.3.1 iOS 8.3 登場人物 InputViewController(.xib | .h | .m) (値を受け渡す ViewController) …

Why use NS* instead of char, int, etc...

to simplify creation of instance for many types Class Clustersdeveloper.apple.com

delegate

Draft article what is GoF Delegation The Gang of Four is wrong and you don't understand delegation - Saturn Flyer with Jim Gaywww.saturnflyer.com non-free article Using prototypical objects to implement shared behavior in object-oriented s…

pragma mark

It's just a mark to categorize. No impact on code. reference thanks for your knowledge sharing What is the significance of #pragma marks? Why do we need #pragma marks?stackoverflow.com #pragmanshipster.com

subview on main view(another view) by addSubView

非参考のお願い ... 内容不正確のため 非参考のお願い ... 内容不正確のため 非参考のお願い ... 内容不正確のため subview on main view will do Set components on Main.storyboard as you want Main.storyboard respond to TopViewController(.m | .h) Cr…

Exception handling

template @try { // process may include exception } @catch(NSException *e) { NSLog(@"Name: %@", [e name]); NSLog(@"Reason: %@", [e reason]); // append if any process exist } ex @try { SampleCustomViewController *viewController = [nib instan…

which to use id or instancetype

use instancetype readable (type safe) ex. generally in ‘init’ … ‘init’ returns 'the instance’ so it’s clear if it’s written ‘instancetype is returned’ (id) init; // what type will be returned? (instancetype) init; // ah ... instance will b…

dealloc relase

Difference between release and dealloc in objective-cstackoverflow.com

@property(readonly) 's initialization(initialize)

Benedict's Soapbox » Defining an Objective-C @property as Publicly readonly and Privately readwrite readonly in outside interface readwrite in inside interface and implementation (and synthesize) XYZViewController.h #import <UIKit/UIKit.h> @interface XYZ</uikit/uikit.h>…

@property, @synthesize ; what is

@property can declare getter/setter property equiv to @property getter/setter|yes @property(readwrite) getter/setter (same as above) @property(readonly) getter|yes @synthesize can cut out getter/setter logic if set @property in interface h…

ARC and retain ; summary, what is

ARC All you have to do is claim ownership of any object you need and remember to relinquish ownership when you’re done with it. retain The retain method claims ownership of an existing object. It’s like telling the operating system, "Hey! …

logger out zombie objects

same as Xcode 6 How do I set up NSZombieEnabled in Xcode 4?stackoverflow.com

error: writable atomic property cannot pair ...

atomic ... property is NOT writable ... @property (atomic) nonatomic ... property is writable ... @property (nonatomic) error: writable atomic property cannot pair a synthesized setter/getter with a user defined setter/getterstackoverflow.…

NSNumber rand gist

gist.github.com

MVV(M) implements

MVVM Tutorial with ReactiveCocoa: Part 1/2 - Ray Wenderlichwww.raywenderlich.com ZZZViewController.h include view model header ZZZViewController.m ViewModel property is strong ZZZViewModel.h Properties should place in header because used f…

Objective-C modern coding style

NYTimes/objective-c-style-guidegithub.com

property fields guideline

Objective-C のプロパティ属性のガイドライン - Qiitaqiita.com

where to write private method in Objective-C

official P38 https://developer.apple.com/jp/documentation/ObjC.pdf unofficial Best way to define private methods for a class in Objective-Cstackoverflow.com

class method cannot call instance method

http://stackoverflow.com/questions/2121880/call-instance-method-from-class-method

@class in Objective-C

forward declaration for objective-c interfacesstackoverflow.com c++’s... class definition #import or class declaration @class

signature

http://stackoverflow.com/questions/3907732/objective-c-method-signatures-are-they-inconsistent

nil and null

http://stackoverflow.com/a/5909310