Translate
2013年10月8日 星期二
2013年10月7日 星期一
轉載iphone5跟iphone4的兩種xib快速生成
主要針對有使用xib的開發者
- (id)init
{
NSString *clssName = NSStringFromClass([self class]);
NSString *xibName = is4InchScreen() ?[NSString stringWithFormat:@"%@_4inch", clssName] : clssName;
self = [super initWithNibName:xibName bundle:nil];
if (self) {}
return self;
}
http://hufeng825.github.io/2013/08/29/ios6/
iOS6轉iOS7的layout問題
最近被iOS6轉iOS7的layout搞死了
為什麼xcode5沒把這部分給改好
搞得開發者都頭暈了
最後我是看了這個文章的介紹去針對ios7的layout做改變
做起來的確有效^_^
推薦一下給大家囉
使用 Interface Builder 設計 iOS7 Layout 並與 iOS6/iOS5 相容
為什麼xcode5沒把這部分給改好
搞得開發者都頭暈了
最後我是看了這個文章的介紹去針對ios7的layout做改變
做起來的確有效^_^
推薦一下給大家囉
使用 Interface Builder 設計 iOS7 Layout 並與 iOS6/iOS5 相容
2013年9月24日 星期二
2013年9月5日 星期四
訂閱:
意見 (Atom)