圓角的處理
來自 <code> AsyncDisplayKit </code>的一個Deomo <code>SocialAppLayout</code> 這是一個 類似新浪微博,app的布局單頁面。其中頭像是圓角的冻记,我們都知道济丘,如果,使用layer來處理圓角生巡,性能肯定有損耗耙蔑。接下來,我們看看 SocialAppLayout 怎么做的孤荣。
有興趣的可以從git上下載代碼看看甸陌。
// User pic 頭像Node 如果不懂 node 可以翻看我之前的博客,不過沒所謂盐股,可以忽略钱豁,我們重點看圓角。
_avatarNode = [[ASNetworkImageNode alloc] init];
///此處為設(shè)置圓角
_avatarNode.imageModificationBlock = ^UIImage *(UIImage *image) {
UIImage *modifiedImage;
CGRect rect = CGRectMake(0, 0, image.size.width, image.size.height);
UIGraphicsBeginImageContextWithOptions(image.size, false, [[UIScreen mainScreen] scale]);
[[UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:44.0] addClip];
[image drawInRect:rect];
modifiedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return modifiedImage;
};
imageModificationBlock 會在圖片解碼完成之后調(diào)用疯汁,此處牲尺,參數(shù) image 是解碼后的正方形圖片。
通過
[[UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:44.0] addClip];
設(shè)置圓角幌蚊。(PS:項目中可以直接使用)谤碳。
當(dāng)然不是每次都做圓角的處理,緩存還是要做的溢豆。
……
///獲取 ASWeakMapEntry 對象
ASWeakMapEntry<UIImage *> *entry = [self.class contentsForkey:contentsKey isCancelled:(asdisplaynode_iscancelled_block_t)isCancelled];
if (entry == nil) { // If nil, we were cancelled.
return nil;
}
_weakCacheEntry = entry; // Retain so that the entry remains in the weak cache
……
<code>ASWeakMapEntry</code>的聲明如下:
@interface ASWeakMapEntry<Value> : NSObject
@property (nonatomic, retain, readonly) Value value;
@end
此處就僅僅存放了一個 UIImage 對象蜒简。
下面看從緩存獲取圖片的過程
+ (ASWeakMapEntry *)contentsForkey:(ASImageNodeContentsKey *)key isCancelled:(asdisplaynode_iscancelled_block_t)isCancelled
{
{
ASDN::MutexLocker l(cacheLock);
if (!cache) {
cache = [[ASWeakMap alloc] init];
}
///如果緩存中有,直接返回
ASWeakMapEntry *entry = [cache entryForKey:key];
if (entry != nil) {
// cache hit
return entry;
}
}
// 緩存中沒有漩仙,直接創(chuàng)建搓茬。
UIImage *contents = [self createContentsForkey:key isCancelled:isCancelled];
if (contents == nil) { // If nil, we were cancelled
return nil;
}
{
ASDN::MutexLocker l(cacheLock);
return [cache setObject:contents forKey:key];
}
}
Entry 對象都存在 ASWeakMap 中。
此處緩存中沒有的話讯赏,直接調(diào)用 createContentsForkey 方法去創(chuàng)建垮兑。創(chuàng)建過程,無非就是解碼當(dāng)前圖片漱挎,解碼完了調(diào)用 imageModificationBlock 系枪。這里之所以使用block 因為,說不定有其他效果什么的磕谅。
<code>ASWeakMap</code>的聲明如下:
@interface ASWeakMap<__covariant Key : NSObject *, Value> : NSObject
/**
* Read from the cache. The Value object is accessible from the returned ASWeakMapEntry.
*/
- (nullable ASWeakMapEntry<Value> *)entryForKey:(Key)key;
/**
* Put a value into the cache. If an entry with an equal key already exists, then the value is updated on the existing entry.
*/
- (ASWeakMapEntry<Value> *)setObject:(Value)value forKey:(Key)key;
@end
如果有圖片圓角影響性能的私爷,可以參考此處做法。ASWeakMap 可以直接從 AsyncDisplayKit 中扒出來使用的膊夹,沒有任何依賴衬浑。。