學習製做iOS程序第三天:建立全局變量,預編譯函數等、優化TabBarController、加入Bugly崩潰日誌、解決鍵盤覆蓋文本框的問題(11~14)

十一:建立Define定義文件和pch預處理文件

一、在Define目錄裏建立Const.h文件,用於保存一些經常使用的宏命令網絡

#define CURRENT_APPID @""
#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
#define IS_RETINA ([[UIScreen mainScreen] scale] >= 2.0)
#define IS_IOS8_AND_UP ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0)

#define SCREEN_WIDTH ([[UIScreen mainScreen] bounds].size.width)
#define SCREEN_HEIGHT ([[UIScreen mainScreen] bounds].size.height)
#define SCREEN_MAX_LENGTH (MAX(SCREEN_WIDTH, SCREEN_HEIGHT))
#define SCREEN_MIN_LENGTH (MIN(SCREEN_WIDTH, SCREEN_HEIGHT))

#define IS_IPHONE_4_OR_LESS (IS_IPHONE && SCREEN_MAX_LENGTH < 568.0)
#define IS_IPHONE_5 (IS_IPHONE && SCREEN_MAX_LENGTH == 568.0)
#define IS_IPHONE_6 (IS_IPHONE && SCREEN_MAX_LENGTH == 667.0)
#define IS_IPHONE_6P (IS_IPHONE && SCREEN_MAX_LENGTH == 736.0)

// View 座標(x,y)和寬高(width,height)
#define X(v)                    (v).frame.origin.x
#define Y(v)                    (v).frame.origin.y
#define WIDTH(v)                (v).frame.size.width
#define HEIGHT(v)               (v).frame.size.height

//定義部分經常使用顏色
#define COLOR(R, G, B, A) [UIColor colorWithRed:R/255.0 green:G/255.0 blue:B/255.0 alpha:A]

//默認的文字大小
#define BASE_FONT_SIZE 15
#define BASE_TABLEVIEWCELL_HEIGHT 46
#define BASE_COLOR_MAIN COLOR(105,175,0,1)
#define BASE_COLOR_TOPBAR COLOR(57,172,105,1)
#define BASE_STATUSBAR_HEIGHT [[UIApplication sharedApplication] statusBarFrame].size.height

二、在Define目錄裏建立UrlDefine.h文件,用於保存一些網絡請求的地址app

#define BASE_URL @"http://192.168.1.117:2002"

#define BASE_URL_MAIN_RECOMMAND @"/house.ashx?action=recommand"
#define BASE_URL_SALE @"/house.ashx?action=list&housetype=1"
#define BASE_URL_RENT @"/house.ashx?action=list&housetype=2"
#define BASE_URL_PROJECT @"/project.ashx"

三、在Define目錄裏建立PrefixMain.pch文件,用於包含一些預處理文件(默認不會啓用pch,因此須要一些設置)工具

#define ISDEBUG

//定義變量
#import "Const.h"
#import "UrlDefine.h"

//第三方組件
#import "AFNetworking.h"
#import "UIView+Toast.h"
#import "SVProgressHUD.h"
#import "Bugly/CrashReporter.h"
#import "UIImageView+WebCache.h"
#import "MJRefresh.h"
#import "IQKeyboardManager.h"

//實用工具
#import "ToolsHelper.h"
#import "HttpHelper.h"

//正式環境不輸出日誌
#ifndef __OPTIMIZE__
#define NSLog(...) NSLog(__VA_ARGS__)
#else
#define NSLog(...) {}
#endif

四、進入Targets,Build Settings,搜索Complie Prefix Header,修改成yes網站

五、而後在Prefix Header中增長pch的文件路徑便可。須要在debug和release中都進行添加。ui

$(SRCROOT)/customerapp/PrefixMain.pchatom

 

 

十二:爲UITabBarController添加圖標,並完善代碼

解決兩個問題,一個是TabBar的圖標問題,二個是每一個頁面不單單是個UIViewController,應該這個頁面還能夠跳轉到下一個頁面,因此這五個頁面應該是UINavigationController。spa

修改AppDelegate.m裏的代碼以下。debug

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    
    //建立並初始化TabBarController
    self.tabBarController=[[UITabBarController alloc] init];
    self.window.rootViewController = self.tabBarController;
    
    //建立五個視圖控制器
    RDMainViewController *VCMain = [[RDMainViewController alloc] init];
    RDProjectListTableViewController *VCProjectList = [[RDProjectListTableViewController alloc] init];
    RDSaleListTableViewController *VCSaleList = [[RDSaleListTableViewController alloc] init];
    RDRentListTableViewController *VCRentList = [[RDRentListTableViewController alloc] init];
    RDMyTableViewController *VCMy = [[RDMyTableViewController alloc] init];
    
    //爲視圖控制器添加導航欄控制器
    UINavigationController *navVCMain= [[UINavigationController alloc]initWithRootViewController:VCMain];
    UINavigationController *navVCProjectList = [[UINavigationController alloc]initWithRootViewController:VCProjectList];
    UINavigationController *navVCSaleList = [[UINavigationController alloc] initWithRootViewController:VCSaleList];
    UINavigationController *navVCRentList = [[UINavigationController alloc] initWithRootViewController:VCRentList];
    UINavigationController *navVCMy = [[UINavigationController alloc] initWithRootViewController:VCMy];
    self.tabBarController.viewControllers=[NSArray arrayWithObjects:navVCMain, navVCProjectList, navVCSaleList,navVCRentList,navVCMy,nil];
    
    //設置標題
    navVCMain.tabBarItem.title=@"首頁";
    navVCProjectList.tabBarItem.title=@"新房";
    navVCSaleList.tabBarItem.title=@"二手房";
    navVCRentList.tabBarItem.title=@"租房";
    navVCMy.tabBarItem.title=@"";
    
    //設置圖標
    navVCMain.tabBarItem.image = [UIImage imageNamed:@"icon_tab_house"];
    navVCProjectList.tabBarItem.image = [UIImage imageNamed:@"icon_tab_building"];
    navVCSaleList.tabBarItem.image = [UIImage imageNamed:@"icon_tab_building"];
    navVCRentList.tabBarItem.image = [UIImage imageNamed:@"icon_tab_building"];
    navVCMy.tabBarItem.image = [UIImage imageNamed:@"icon_tab_user"];
    navVCMain.tabBarItem.selectedImage = [UIImage imageNamed:@"icon_tab_house_press"];
    navVCProjectList.tabBarItem.selectedImage = [UIImage imageNamed:@"icon_tab_building_press"];
    navVCSaleList.tabBarItem.selectedImage = [UIImage imageNamed:@"icon_tab_building_press"];
    navVCRentList.tabBarItem.selectedImage = [UIImage imageNamed:@"icon_tab_building_press"];
    navVCMy.tabBarItem.selectedImage = [UIImage imageNamed:@"icon_tab_user_press"];
    
    //一些通用顏色設置
    [[UITabBar appearance] setTintColor:BASE_COLOR_MAIN];
    [[UINavigationBar appearance] setBarTintColor:BASE_COLOR_TOPBAR];
    [[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
    [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
      
    [self.window makeKeyAndVisible];
    
    return YES;
}

看看模擬器效果,還不錯不是。日誌

 

十三:加入Bugly崩潰日誌功能

系統必定要有日誌功能!系統必定要有日誌功能!系統必定要有日誌功能!code

不要期望用戶替你提交bug,忠誠點的用戶崩潰以後再打開一次,普通用戶就直接罵句垃圾,而後就卸載了。用C#的時候用Log4NET記錄錯誤日誌。iOS程序固然也要有。

一、進入騰訊Bugly建立你的程序,獲取監視ID。

二、AppDelegate.m加入以下代碼便可。

後面的ID是騰訊給你的監視ID,不是你的APPID哦。

三、模擬器運行一次程序,而後返回騰訊bugly網站,看,成功了。

 

十四:解決鍵盤覆蓋文本框的問題

一、AppDelegate.m文件中加入以下代碼便可。

二、須要用到這個功能的h文件加入。

@property(nonatomic,strong) IQKeyboardReturnKeyHandler *returnKeyHandler;

三、須要用到這個功能的m文件的viewDidLoad方法加入以下代碼

如下是引用其餘文章的。

「設置returnKeyHandler,能夠點擊鍵盤上的next鍵,自動跳到下一個輸入框。最後一個輸入框點擊done自動收起鍵盤。 運行後,能夠看到輸入框隨着鍵盤的彈出自動上下浮動。點擊背景,鍵盤收起。全自動了。 這個庫默認支持UITextField、UITextView、UIWebView、UIScrollView、UITableView、UICollectionView 最後要注意一點,它能夠自動計算多個textField之間的前後順序,排列依據是看addSubView的前後順序。」

 

最後記錄一個問題,NSMutableArray自動釋放會形成問題。

It doesn't really matter. [NSMutableArray array] is a nice shortcut, but you have to remember to retain it, so the question really is a matter of [[NSMutableArray array] retain] versus [[NSMutableArray alloc] init]. I usually use the former. The real convenience comes in when you need to statically fill the array; you can do it all in one message. [[NSMutableArray arrayWithObjects:...] retain] is faster than [[NSMutableArray alloc] init] followed by numerous [NSMutableArray addObject:(id)] calls.

相關文章
相關標籤/搜索