格蓝_个人页

个人头像照片 格蓝
0
14
0

个人介绍

iOS程序猿

擅长的技术

获得更多能力
通用技术能力:

暂时未有相关通用技术能力~

云产品技术能力:

暂时未有相关云产品技术能力~

阿里云技能认证

详细说明
暂无更多信息
正在加载, 请稍后...
暂无更多信息
  • 回答了问题 2019-07-17

    iOS怎么定义私有属性

    私有属性一般放在extension里哦
    踩0 评论0
  • 回答了问题 2019-07-17

    ios oc对象不可以直接写到plist中..

    实现下NSCoding协议
    踩0 评论0
  • 回答了问题 2019-07-17

    iOS系统的内存是什么结构

    // 创建在常量区 NSString *string1 = @'这是一个字符串常量'; // 创建在堆区 NSString *string2 = [[NSString alloc] init]; // 创建在常量区 NSString *string3 = [NSString string]; // 快速创建一个格式化的字符串, 创建在堆区 int number = 2; NSString *string4 = [[NSString alloc] initWithFormat:@'%d',number];
    踩0 评论0
  • 回答了问题 2019-07-17

    关于移动客户端本地加密方案

    指纹识别
    踩0 评论0
  • 回答了问题 2019-07-17

    iOS 怎么在程序关闭的时候移除所有本地通知

    - (void)applicationWillTerminate:(UIApplication *)application { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. }
    踩0 评论0
  • 回答了问题 2019-07-17

    ios7 使用push方式加载新页面上的UIScrollView不能滑动!!请大神解决

    看下是不是automaticallyAdjustsScrollViewInsets的影响
    踩0 评论0
  • 回答了问题 2019-07-17

    IOS 手势密码 怎么做呢?

    为了保证触摸区域,要使用- (BOOL)pointInside:(CGPoint)point withEvent:(nullable UIEvent *)event; // default returns YES if point is in bounds
    踩0 评论0
  • 回答了问题 2019-07-17

    iOS模拟器界面和storyboard界面布局不一致?

    xcode里可以选择界面的模拟尺寸的,你选的模拟尺寸跟你模拟器一样的话,显示效果就一样了呃
    踩0 评论0
  • 回答了问题 2019-07-17

    iOS 7如何修改状态栏文本颜色?

    在没有使用 UIViewController-based status bar 时,使用如下设置方法: // Setting the statusBarStyle does nothing if your application is using the default UIViewController-based status bar system.@property(readwrite, nonatomic) UIStatusBarStyle statusBarStyle NS_DEPRECATED_IOS(2_0, 9_0, 'Use -[UIViewController preferredStatusBarStyle]') __TVOS_PROHIBITED; (void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 9_0, 'Use -[UIViewController preferredStatusBarStyle]') __TVOS_PROHIBITED; 没有使用 UIViewController-based status bar 时,用 // Setting the statusBarStyle does nothing if your application is using the default UIViewController-based status bar system. @property(readwrite, nonatomic) UIStatusBarStyle statusBarStyle NS_DEPRECATED_IOS(2_0, 9_0, 'Use -[UIViewController preferredStatusBarStyle]') __TVOS_PROHIBITED; - (void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated NS_DEPRECATED_IOS(2_0, 9_0, 'Use -[UIViewController preferredStatusBarStyle]') __TVOS_PROHIBITED;
    踩0 评论0
  • 回答了问题 2019-07-17

    ios8强制转屏的方法

    这两个方法要在ViewController里实现 - (BOOL)shouldAutorotate - (UIInterfaceOrientationMask)supportedInterfaceOrientations
    踩0 评论0
  • 回答了问题 2019-07-17

    ios 二维码扫描实现

    iOS还可以用开源库 ZBar, 可以了解下
    踩0 评论0
  • 回答了问题 2019-07-17

    IOS app被关掉后能收到消息推送,并显示在status bar上吗

    前提是用户对你的应用设置里,通知是打开的
    踩0 评论0
  • 回答了问题 2019-07-17

    现在开发ios 应用需要考虑兼容ios 5 吗?

    从接手过的项目,待过的公司部门来看,去年最低兼容iOS6,目前基本是最底iOS7。可以在appStore上看下几个主流最常用的app的最低兼容版本,同步下就好啦。
    踩0 评论0
  • 回答了问题 2019-07-17

    ios这种效果是怎么实现的?能给点思路吗?

    如果是要用,引入iCarousel就好了,如果要研究原理,看下iCarousel的原理。git地址:https://github.com/nicklockwood/iCarousel
    踩0 评论0
正在加载, 请稍后...
滑动查看更多
正在加载, 请稍后...
暂无更多信息