2018-02-09-知识小集

几个好的但一直没有具体的实践的方法

  • 番茄工作法

  • 思维导图

  • 时间管理

  • 艾宾浩斯记忆法

阅读感想 — 总结

  1. 工作上你会遇到各种问题,但是也会有各种办法解决,只不过是时间早晚问题

  2. 生活上你想学习更多的知识,不要去想一些多余的事,只要去看更多的书就行

2018/2/9 posted in  生活总结

2018-02-06-上传壁纸功能(大佬版)

上传壁纸

  • 选中一个图片,并且发布
- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"上传壁纸";
    // 点击UIButton AddWallpaper 是打开相册添加图片
    [_AddWallpaper addTarget:self action:@selector(AddWallpaperClick) forControlEvents:UIControlEventTouchUpInside];
    
    // 点击UIButton UpWallPaper 是上传图片
    [_UpWallpaper addTarget:self action:@selector(UpWallpaperClick) forControlEvents:UIControlEventTouchUpInside];
}

Read more   2018/2/6 posted in  工作总结

2018-02-05-生活总结

近来工作

  • 一个星期请了两次假,我从没有过的情况

  • 万事,还是得以工作为主

  • 把事情处理好了,你想怎么搞就这么搞,前提是,交给你的工作做完

生活问题

  • 家里淹水、朋友结婚、工作堆成山、巨额贷款

  • My concern is in the future, because i am going to spend the rest of my life there

  • Let go of the past, enjoy the present, embrace the future.

  • 你的确也不是孩子了,你分得清主次分得清好坏分得清对错,也不会再像以前那样,能为了一个人,做出一些不符合常理的事

  • 那个你,便是我。

  • 我们都需要沉淀,都需要成长

  • 别再因为一些不必要的事去请假,那样没意义

  • 该健身的时候还是健身、该玩游戏的时候还是玩游戏、该工作的还是得工作,目标别停滞

对于爱情的看法

  • 物质基础

  • 两情相愿

  • 知根知底

  • 三观、兴趣合

  • 门当户对是有道理的

对于婚姻的看法

结婚和谈恋爱完全是两码事

  • 那时候完完全全就是考验一个人的是否真的能担当起责任的时候

  • 要考虑双方父母的感受

  • 考虑能否养活一家人

  • 如果有孩子了,是否能给与良好的教育等等一系列的问题

  • 当然,问题远远不可能就这么点

现实的问题

  • 有钱有存款吗?

  • 有房吗?

  • 有车吗?

  • 有公司吗?

  • 有颜值吗?

  • 潜力股吗?

  • 你够成熟吗?

  • 当然,也有一些那种不考虑这种因素的女孩子,也选择和你在一起

  • 那恭喜你,你找到了爱情,记得珍惜

2018/2/5 posted in  生活总结

2018-02-06-SVN 相关问题和登录密码问题

Read more   2018/2/5 posted in  工作总结

2018-02-02-上传壁纸功能

Read more   2018/2/2 posted in  工作总结

2018-01-31-获取本地图片

打开本地相册并添加到视图

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"上传壁纸";
    // 点击UIButton AddWallpaper 就是打开相册添加图片
    [_AddWallpaper addTarget:self action:@selector(AddWallpaperClick) forControlEvents:UIControlEventTouchUpInside];
    
    // 点击UIButton UpWallPaper 就是上传图片
    [_UpWallpaper addTarget:self action:@selector(UpWallpaperClick) forControlEvents:UIControlEventTouchUpInside];
}
- (void)AddWallpaperClick {
    
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"请选择图片" preferredStyle:UIAlertControllerStyleActionSheet];
    
    UIAlertAction *OKAction = [UIAlertAction actionWithTitle:@"打开相册" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        // 打开相册
        [self open];
    }];
    
    
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
    
    [alertController addAction:OKAction];
    [alertController addAction:cancelAction];
    
    [self presentViewController:alertController animated:YES completion:nil];
    
    
}
Read more   2018/1/31 posted in  工作总结