2014年1月28日 星期二

在MySQL上,關於UTF8的二三事

今天發現,我的varchar竟然不能存成utf8,
google了一下,才發現是少了mysql_query(“SET NAMES ‘UTF8′");
參考

2014年1月13日 星期一

連結xcode裡Storyboard的viewcontroller

UIStoryboard *sb = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil]; UIViewController *vc = [sb instantiateViewControllerWithIdentifier:@"myViewController"];