韌館-LearnHouse

藍寶石公主號-Day2 遊輪上的日常&沖繩那霸

前天晚上可以填寫房間早餐單子掛在門口,讓服務生將早餐送至客房,不過要記得因為第二天是用日本時間,但填寫單子的時候是台灣時間。日本可是比台灣快一個小時。

Read more...

2017年5 月 posted by admin in 生活日記 and have No Comments

藍寶石公主號-Day1 基隆港出航&船上第一晚

遲來的母親節禮物終於正式要上演了,站長人老了現在都不多話,就直接用照片記錄行程吧


Read more...

2017年5 月 posted by admin in 生活日記 and have No Comments

[iOS]UITextField常用設定

設置邊框樣式,只有設置了才會顯示邊框樣式
text.borderStyle = UITextBorderStyleRoundedRect;

typedef enum {
UITextBorderStyleNone,
UITextBorderStyleLine,
UITextBorderStyleBezel,
UITextBorderStyleRoundedRect
} UITextBorderStyle;

Read more...

2017年2 月 posted by admin in 程式&軟體 and have No Comments

[iOS]Objective-C常用的Cocoa Touch API

dispatch_async

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
    // 耗时的操作
    dispatch_async(dispatch_get_main_queue(), ^{
        // 更新界面
    });
}); 

Read more...

2017年1 月 posted by admin in 程式&軟體 and have No Comments

簡單魔術教學

一分鐘出4A

[http://www.youtube.com/watch?v=FwvsjzsGPs8]

Read more...

2016年10 月 posted by admin in 趣味一下 and have No Comments

[轉]在使用 NSURLSession 時允許使用不安全的 SSL 連線

但很多時候你就會去做那些你不該做的事。比方說,你要寫一個 iOS 上的 Client,而 API Server 也還在開發中,接下來所有的 API 都會使用 HTTPS,但是還沒有花錢去買憑證,所以就先隨便產生了一個東西檔著先,而如果你使用 NSURLSession 試圖建立不安全的 HTTPS 連線的話,NSURLSession 就拒絕連線並且回傳 Error 物件。但是這種狀況下,你還是要先想辦法把連線建立起來,才有辦法在 Server 還在開發中的狀況下也寫點 Client Side 的程式。

Read more...

2016年10 月 posted by admin in 程式&軟體 and have No Comments