关键字 selector 的文章


由   YIem   撰写于    浏览:2251  评论:0
AppleScript自动脚本,Typecho评论审核自动化点击处置备份用途,tell application "System Events" repeat 50 times my chromeTestClickElements() end repeat end tell on chromeTe[...]

由   YIem   撰写于    浏览:7714  评论:0
使用模拟器时Xcode控制打印Sending selectors failed with: Error Domain=NSCocoaErrorDomain Code=4099 [Client] Sending selectors failed with: Error Domain=NSCocoaErrorDomain Code=4099 "[...]

由   YIem   撰写于    浏览:3790  评论:0
iOS 状态栏的隐藏显示与状态栏样式的设置一、有关状态栏的隐藏1.1、方式一:提示:控制器之间的状态栏不会相互影响 (下面是 iOS9 之后的设置,不支持 iOS 9以前设备)<1>、在info.plist里面添加下面代码为YESView controller-based status bar appearanceView contro[...]

由   YIem   撰写于    浏览:5763  评论:0
Dart 使用HttpRequest对象以及getString加载Json数据Dart 使用HttpRequest 加载import 'dart:html'; import 'dart:async'; // 数据请求 import 'dart:convert'; // Json 解析 UListElement wordList = querySe[...]

由   YIem   撰写于    浏览:7448  评论:0
iOS开发# Attempted to dereference an invalid ObjC Object or send it an unrecognized selector.出问题的过程对于数组进行操作时Crash控制台PO打印 Errorerror: Execution was interrupted, reason: Attempted[...]

由   YIem   撰写于    浏览:5491  评论:0
问题:[NSNull length]: unrecognized selector sent to instance 0x1068b8f08-相关解决方法今天突然发现App的一个页面崩溃,检查之后发现后台返回来的必需值是空的。而我使用YYKit框架和Masonry,“需要去测算字符的长度,而YYKit没有对空进行判断,我这边也没有判断,所以导致了,[...]

由   YIem   撰写于    浏览:4485  评论:0

由   YIem   撰写于    浏览:5101  评论:0
iOS-判断当前网络状态-数据-无网络-WIFI-等等-第三方@第三方---UIKit+AFNetworking

由   YIem   撰写于    浏览:4527  评论:0
iOS-数据库-FMDB-第三方-插入数据列表-

由   YIem   撰写于    浏览:4250  评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)

由   YIem   撰写于    浏览:4289  评论:0

由   YIem   撰写于    浏览:3292  评论:0

由   YIem   撰写于    浏览:4130  评论:0

由   YIem   撰写于    浏览:3346  评论:0

由   YIem   撰写于    浏览:3373  评论:0

由   YIem   撰写于    浏览:3877  评论:0

由   YIem   撰写于    浏览:2922  评论:0

由   YIem   撰写于    浏览:3763  评论:0

由   YIem   撰写于    浏览:3942  评论:0
/********UIPageControl 页码********/ UIPageControl *pcr = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 500, 200, 50)]; // 注意属性 // 注意, 如果不设置页码个数 控件不显示 pcr.numberOfPages[...]

由   YIem   撰写于    浏览:4528  评论:0
UISlide 滑动条UISlider *slide = [[UISlider alloc] initWithFrame:CGRectMake(100, 400, 300, 10)];// 重要属性 // 最小值 slide.minimumValue = 0; // 最大值 slide.maximumValue = 10; // 设置进度位置 sl[...]

由   YIem   撰写于    浏览:3227  评论:0
/****** UISwith 开关******/ // frame只有坐标生效, 大小无效由系统默认指定 UISwitch *swt = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 0, 0)]; // 注意触发方式 [swt addTarget:self action:@sele[...]

由   YIem   撰写于    浏览:3297  评论:0
iOS-UI-创建3个UISlider-分别设置划过区域的颜⾊分别为红,黄,蓝-通过控制三个slider改变self.view的背景颜⾊#import "ViewController.h"@interface ViewController ()@property (nonatomic, retain) UISlider *red;@property[...]

由   YIem   撰写于    浏览:3197  评论:0
#import "ViewController.h" @interface ViewController ()@property (nonatomic, retain) UILabel *label;@end@implementation ViewController(void)dealloc{[_label release];[...]

由   YIem   撰写于    浏览:3768  评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]

由   YIem   撰写于    浏览:4488  评论:0
SetViewController *setVC = [[SetViewController alloc]init];// 注意坐标设置 setVC.view.frame = CGRectMake(-150, 0, 150, self.view.frame.size.height); [self addChildViewControll[...]