TYAttributedLabel簡單易用的富文本(作者:12207480)
TYAttributedLabel 簡單易用的屬性文本的控件(無需了解CoreText)
支持富文本,圖文混排顯示,自適應高度
支持添加高度自定義文本屬性
支持添加屬性文本,自定義鏈接
支持添加UIImage和UIView控件
希望大家喜歡,喜歡的話就給個star吧
測試環境:Xcode 6.2,iOS 6.0以上
高仿iOS 系統計算器(基本功能)(作者:terrylmay)
邏輯部分:通過將輸入的中綴表達式 轉換為後綴表達式進行計算.並通過FMDB 保存歷史記錄
UI部分:使用AutoLayout + SizeClasses 完成界面布局
測試環境:Xcode 6.2,iOS 6.0以上
仿網易郵箱列表側滑菜單(作者:jiahai)
JHMenuTableViewDemo-仿網易郵箱列表側滑菜單
配置JHMenuTableView參數
- 在JHMicro.h文件中配置JHMenuTableView參數
/** * JHActionButton的寬度 */ extern const NSInteger JHActionButtonWidth; /** * JHActionButton文本的字體 */ extern const NSInteger JHActionButtonTextFontSize; /** * 展開Menu時,是否顯示更多按鈕 */ extern const BOOL JHActionMoreButtonShow; /** * 更多按鈕出現的index,從右向左,從0開始 */ extern const NSInteger JHActionMoreButtonIndex; /** * Menu展開/收縮的動畫持續時間,單位為秒 */ extern const float JHMenuExpandAnimationDuration;
測試環境:Xcode 6.2,iOS 6.0以上
炫酷側滑菜單布局框架(作者:xdf)
炫酷側滑菜單布局框架的詳細用法請見:https://github.com/xudafeng/SlideMenuView
Android 版本的一致實現請見:https://github.com/xudafeng/SlidingMenu
測試環境:Xcode 6.2,iOS 6.0以上
頁面管理器,支持URLScheme跳轉頁面(作者:pozi119)
頁面管理器:
跳轉指定頁面,只需要知道viewController的Class名,如果有storyboard,則需要指定storyboard名.
無需添加基類.
支持URLScheme跳轉指定頁面.
備注: 初始版本,請根據具體情況修改代碼.不定時更新.
具體用法:
如果不需要使用URLScheme的方式,只需要在AppDelegate.m加入代碼
[VOVCManager sharedManager];
如果要使用URLScheme,需要在AppDelegate.m中注冊想要的頁面,如:
[[VOVCManager sharedManager] registerWithSpec:@{VOVCName:@"favorite", VOVCController:@"VOFavoriteMainController", VOVCStoryboard:@"Main", VOVCShowType:@(VVMSHowPush)}];
3.使用storyboard,請設置每個ViewController的Storyboard ID和對應的Class名一致.
4.其他使用請參考注釋.
測試環境:Xcode 6.2,iOS 6.0以上