- 浏览: 580620 次
- 性别:
- 来自: 广州
文章分类
最新评论
-
JYY282:
[i][/i]
Ecshop与Shopex的比较 -
qq247890212:
我也遇见这问题了,真诡异。重新下载个猫换了就好了。 太浪费时间 ...
诡异:ClassNotFoundException: org.springframework.web.filter.CharacterEncoding
http://developer.apple.com/library/ios/#documentation/2DDrawing/Conceptual/DrawingPrintingiOS/SupportingHiResScreens/SupportingHiResScreens.html#//apple_ref/doc/uid/TP40010156-CH15-SW8
On devices with high-resolution screens, the imageNamed:
, imageWithContentsOfFile:
, and initWithContentsOfFile:
methods automatically looks for a version of the requested image with the @2x
modifier in its name. It if finds one, it loads that image instead. If you do not provide a high-resolution version of a given image, the image object still loads a standard-resolution image (if one exists) and scales it during drawing.
http://www.cocoachina.com/bbs/read.php?tid-59896.html:
例如:
我只有1@2x.png
當我用
UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"1" ofType:@"png"]];
Return 一定是nil
一定要用
UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"1@2x" ofType:@"png"]];
才會返回圖片
------------------------------
[ NSBundle mainBundle ] pathForResource: @"1@2x.png" ofType: nil ]
这里就返回nil了,可以这么做,
NSString * path = [[ NSBundle mainBundle ] resourcePath ];
path = [path stringByAppendingPathComponent:@"1.png"];
UIImage *img = [UIImage imageWithContentsOfFile:path];
不明白你为啥要这么做,要提醒你的是,你的程序不能
* 在安装了ios4.0以前地设备上跑,包括iphone4,如果安装了老系统的话
* 在非高分屏设备,如3g, 3gs上跑(即使ios装了4.0以上)
因为你没有非高分屏的图。
发表评论
-
Objective-C 与 C++ 的异同
2013-04-02 12:03 1396http://www.cnblogs.com/y041039 ... -
Cocos2D-X是全球知名的开源跨平台手机游戏引擎
2013-01-22 10:05 2751http://www.oschina.net/p/cocos ... -
iOS Keyboard 键盘高度变化 自适应
2013-01-15 15:43 3249[[NSNotificationCenter default ... -
iOS使用自定义字体
2012-11-27 12:11 12140From: http://blog.csdn.net/csy1 ... -
4 款类似 Facebook/Path 切换效果的 iOS 组件
2012-11-27 12:03 2184From: http://blog.csdn.net/lia ... -
Path 2.0的UI界面设计详细介绍
2012-11-27 11:56 1463如Path的创始人Dave Morin ... -
史上最全的App Store邮箱列表
2012-11-27 11:51 1269From: http://roybaby.blog.51cto ... -
iOS从info.plist 获取项目的名称及版本号
2012-11-16 10:54 1664From: http://blog.sina.com.cn/s ... -
MapKit annotation drag and drop with callout info update
2012-10-13 10:38 2403http://hollowout.blogspot ... -
NSArray 或NSDictionary 调用writeToFile方法失败原因
2012-08-31 10:03 4465NSArray 或NSDictionary 调用writeTo ... -
如何让IOS应用从容地崩溃
2012-08-30 15:25 1615From: http://www.cocoachina.com ... -
iOS中判断设备系统版本
2012-08-29 17:17 31710在iOS开发中,经常要考虑系统的向下兼容,如果使用 ... -
iOS 汉字转拼音
2012-08-21 16:42 1463From: http://www.cnblogs.com/v2 ... -
iOS模拟器截图工具
2012-08-17 16:35 1654From: http://magicalboy.com/ios ... -
XCode下的iOS单元测试
2012-08-10 17:47 1163From: http://mobile.51cto.com/ ... -
AFNetworking
2012-08-08 10:54 4648AFNetworking on github: https:/ ... -
Wrapping Conventions
2012-08-01 15:54 822Wrapping Conventions ... -
Core Animation如何使显式动画结束时的值直接作用Layer
2012-08-01 14:51 3793(1)使用隐式动画会直接改变layer的属性值,如: ima ... -
How To Debug Memory Leaks with XCode and Instruments Tutoria
2012-07-31 16:30 1053From: http://www.raywenderlich. ... -
Using Properties in Objective-C Tutorial
2012-07-31 16:27 924From: http://www.raywenderlich. ...
相关推荐
// Draw the image into the new context, scaled and centered CGRect thumbnailRect = CGRectZero; thumbnailRect.origin = thumbnailPoint; thumbnailRect.size.width = scaledWidth; thumbnailRect.size....
# TKResourcesCleaner A Mac App to find unused images and resources in an XCode project. It is heavily influenced by jeffhodnett‘s [Unused]...Requires OS X 10.7 and above, ARC.
buffer2[(307 - y) * 320 * 4 + x] = buffer[y * 4 * 320 + x]; } } // Create data provider with data. CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, buffer2, myDataLength, NULL); ...
[hash appendFormat:@"%02x", result[i]]; } return [hash lowercaseString]; } @end ``` 这段代码通过使用 `CommonCrypto` 框架中的 `CC_MD5` 函数来计算输入字符串的 MD5 值,并将其转换为十六进制字符串表示...
2. **图片转换**: 在iOS中,我们通常使用UIImage对象来处理图像。将UIImage转换为OpenCV的Mat矩阵,可以使用`UIImageToMat`函数,而`MatToUIImage`则用于将Mat转换回UIImage。例如: ```cpp UIImage *image = ...;...
例如,可以使用`UIImage(named:)`初始化一个UIImage对象。 ```swift let originalImage = UIImage(named: "example.jpg") ``` 2. **创建倒影图像**:利用Core Graphics,我们可以对原始图片进行操作,生成倒影。...
context.translateBy(x: rect.width / 2, y: rect.height / 2) // Convert angle to radian and rotate context.rotate(by: CGFloat(angle / 180 * M_PI)) // Move context origin back (-rect.width / 2, -...
let rect = CGRect(x: 0, y: 20, width: self.view.frame.size.width, height: self.view.frame.size.height-20) myTableView = UITableView(frame: rect) myTableView.delegate = self myTableView.dataSource = ...
2. **背景图设置**: 对于背景图,可以在UICollectionViewCell的子类中设置。通常在`awakeFromNib`或`layoutSubviews`方法中加载图片,并设置为Cell的背景色或背景视图。 ```swift override func awakeFromNib() { ...
在iOS 11中,苹果引入了一项重大更新——拖拽(Drag and Drop)交互体验,这为开发者提供了全新的方式来构建用户界面和提升用户体验。拖拽交互在iOS设备上首次实现,特别是在iPad上,允许用户跨应用进行内容传递,大大...