2018-12-27

第一天

一、 RNCryptor加密库导入

打算项目内使用RNCryptor加密,AES加密方式
Github地址:RNCryptor
Objective-C版本地址:RNCryptor-objc
clone地址:https://github.com/RNCryptor/RNCryptor-objc.git
克隆到本地后,将RNCryptor和RNCryptor iOS文件夹导入到工程中。
使用 需要在Build Phases的Link Binary With Libraries中添加Security.framework

RNCryptor-objc.png
RNCryptorImprot.png

RNCryptor iOS.h文件中,需要将

#import <RNCryptor/RNCryptor.h">
#import <RNCryptor/RNDecryptor.h>
#import <RNCryptor/RNEncryptor.h>
#import <RNCryptor/RNCryptorEngine.h>

改为

#import "RNCryptor.h"
#import "RNDecryptor.h"
#import "RNEncryptor.h"
#import "RNCryptorEngine.h"
WX20181227-205738.png

才可以正常编译。编译成功后,在需要使用的地方#import "RNCryptor iOS.h"即可。

#RNCryptor的使用
    NSData *data = [NSData data];//获得需要加密的数据
    NSSring *privateKey = @"123456";
    NSError *error;
    //RNCryptor加密
    NSData *encryptedData = [RNEncryptor encryptData:data withSettings:kRNCryptorAES256Settings password: privateKey error:&error];
    //RNCryptor解密
    NSData *decryptedData = [RNDecryptor decryptData:encryptedData withSettings:kRNCryptorAES256Settings password: privateKey error:&error];
    MyLog(@"%@",decryptedData);

2.国际化

Command+N在工程内新建一个StringsFile文件

StringsFile.png

再到Projrct中,选择Info,在Localization中添加需要的语言。

WechatIMG411.png

回到文件列表,选中该文件,如Localized.strings,打开Xcode右边区域,查看该文件详情,找到“Localization”,选中需要的语言,然后Localized.strings下会自动生成对应的国际化文件。

WX20181227-211117.png

使用国际化时,用NSLocalizedString(<#key#>, <#comment#>)来获取项目中使用的字符串。
如果需要跟随系统语言,则要在Info.plist文件中添加Application has localized display name,并设置为YES
注:Info.plist中的国际化,对StringsFile的命名只能是InfoPlist.strings

3.关于#import头文件不自动提示的问题

Xcode->File->Project Setting中设置BuildSystem为:

WX20181227-211910.png

4.App框架构建

采用常见的TabbarController上包含多个NavigationViewController的方式。

整体结构为:
UIWindow{
        UITabbarController{//RootViewController
                UINavigationViewController{LeonMainPageVC}
                UINavigationViewController{LeonSettingVC}
                UINavigationViewController{......}
                ......
        }
}
RootViewController : UITabBarController
BaseViewController : UIViewController
LeonMainPageVC : BaseViewController
LeonSettingVC : BaseViewController

AppDelegate.m中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    // 创建Window
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // 设置Window的背景颜色
    self.window.backgroundColor = [UIColor whiteColor];
    // 创建根控制器
    _rootVC = [[RootViewController alloc] init];
    // 设置根控制器
    self.window.rootViewController = _rootVC;
    // 设置并显示主窗口
    [self.window makeKeyAndVisible];
    // 监听截屏事件
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(screenShootAction:) name:UIApplicationUserDidTakeScreenshotNotification object:nil];
    return YES;
}

RootViewController.m中

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    LeonMainPageVC *mainVC=[[LeonMainPageVC alloc] init];
    LeonSettingVC *settingVC=[[LeonSettingVC alloc] init];
    UINavigationController *mainNV = [[UINavigationController alloc] initWithRootViewController:mainVC];
    UINavigationController *settingNV = [[UINavigationController alloc] initWithRootViewController:settingVC];
    // 把子控制器添加到UITabBarController
    self.viewControllers = @[mainNV, settingNV];
}

5.SourceTree配置iOS工程忽略文件

全局配置:
SourceTree->Preferences->Git->EditFile

Screen Shot 2018-12-27 at 23.40.37.png

项目独立配置:
进入相应的Repository->Setting->Advanced->Edit

WX20181227-234904@2x.png

在Edit文件中粘贴下方忽略规则。(iOS专用)

#project
#ProjectPath/tools/localization/xlsx
Index/
.DS_Store
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.log
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
#GULP

node_modules/
package-lock.json
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容