Commit ab7f3920 by lee

u

parent adcdd5a1
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
/** /**
* deeplink tags * deeplink tags
*/ */
@property (strong, nonatomic) NSArray *ctags; @property (strong, nonatomic) NSArray<NSString *>*ctags;
@property (nonatomic) KWMProductType *productType; @property (nonatomic) KWMProductType *productType;
......
...@@ -53,7 +53,7 @@ static NSString *idStr = @"KWMBrandCaramelCell"; ...@@ -53,7 +53,7 @@ static NSString *idStr = @"KWMBrandCaramelCell";
self.hasNextPage = NO; self.hasNextPage = NO;
self.collectionSort = BUYCollectionSortCreatedDescending; self.collectionSort = BUYCollectionSortCreatedDescending;
if (self.ctags) { if (self.ctags) {
self.title = self.ctags.firstObject; self.title = self.ctags.firstObject.capitalizedString;
}else }else
if(self.productType != nil){ if(self.productType != nil){
//初始化双行标题栏 //初始化双行标题栏
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment