- 浏览: 139762 次
- 性别:
- 来自: 深圳
最新评论
-
pgy20032000:
好使 谢啦 [img][/img]
怎样从DOS的telnet中退出 -
txlong_onz:
图片不知道怎么上传的,见谅。
怎样从DOS的telnet中退出 -
txlong_onz:
虽然命令行上写的有Ecsape字符是引用CTRL+],但是我试 ...
怎样从DOS的telnet中退出 -
txlong_onz:
老大,你怎么代码不放到专门的代码区啊?我看的好费力啊,因为是新 ...
flash 加载gb2312乱码的处理(2中方法)
文章列表
org.tigris.subversion.javahl.ClientException:Path is not a working copy directorysvn:"d:\test" is not a working copy提示比较明显了,不是工作拷贝,你应该把库中的内容checkout到一个新的目录
1:检查.dysm .app .crash文件的一致性。
利用系统自带的dwarfdump --uuid xx.dysm获取符号表的uuid。
特别注意.crash的uuid是Binary Images的第一行,而不是cras文件的第一行的Incident Identifier.
2: 需要找到xcode自带的symbolicatecrash文件 然后执行symbolicatecrash .crash .dysm > result.crash
A:注意最后是箭头
B: find /Applications/Xcode.app/ ...
每个iPhone或iPod Touch都有一个唯一的设备标识符(UUID),由40个字符或数字构成。类似于,1efb55db0b545766ed940db8c32a65b37cc06ae5。
但在xcode8之后通过window-organizer 无法获取到UUID了。
itunes也找不到,我是通过Itools -- 更多 获取到UUID的。如图:
4个基本Spotlight快捷键:-打开Spotlight菜单:Control+空格-在Finder中打开Spotlight:Command+Option+空格-清空Spotlight搜索框:ESC-关闭Spotlight菜单:ESC按两次7个Spotlight使用&导航快捷键:-打开第一个搜索项目:回车
可以搜索performselector的参数,看有没有拼出来的selector
另外搜索extern C的函数声明,看是否有函数没有定义但是有调用
- (UIImage *)blurImageFromBackGround
{
//parentView是要生成模糊背景的view
UIGraphicsBeginImageContext(self.parentView.bounds.size);
[self.parentView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphi ...
现在看的有点混乱。大概知道 在interface中声明的是实例变量,如果是公共的就可以被外部访问。那和implementation 中什么的变量区别在哪里呢?
+ (UIImage *)getImageOfView:(UIView *)view
{
UIImage *screenImage;
// UIWindow *screenWindow = [[UIApplication sharedApplication] keyWindow];
UIGraphicsBeginImageContextWithOptions(view.bounds.size, NO, 0.0);
SEL aSelector = NSSelectorFromString(@"drawViewHierarchyInRect:aft ...
isKindClass isNumberClass
- 博客分类:
- oc
isMemberOfClass 该方法是用来判断是否是该类的实例,父类不参与,与isKindOfClass区别,但是小弟有个疑问,为什么用系统的某些类调用这个方法的时候却不好使?
NSMutableArray * mutablearray = [[NSMutableArray alloc] init];
02.
03.
if ([mutablearray isMemberOfClass:[NSMutableArray class]]) {
04.
05.
NSLog(@"yes");
06.
07.
}
08.
09.
...
CFAbsoluteTimeGetCurrent
*uin NSInteger 1819045699 1819045699
setNeedsDisplay
+ (NSInteger)getCurrentVIPLevel
{
if ([[QZoneUserSetting GetInstance] getQzoneVipLevel] > 0) {
return [[QZoneUserSetting GetInstance] getQzoneVipLevel];
}
//开通黄钻 level为1初始化为1
...
1:居中布局
label.center = CGPointMake(CGRectGetMidX(window.bounds), CGRectGetMidY(window.bounds));
2:设备检测
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
} else {
re ...