溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

改變背景 自適應(yīng)高度

發(fā)布時間:2020-06-25 06:09:30 來源:網(wǎng)絡(luò) 閱讀:287 作者:scluojianying 欄目:開發(fā)技術(shù)

 改變背景

 

CGRect frame = CGRectMake(0, 0, 320, 50);

UIView *viewBackround = [[UIView alloc] initWithFrame:frame];

UIImage *imgBackground = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"navbar.png" ofType:nil]];

UIColor *colorPattern = [[UIColor alloc] initWithPatternImage:imgBackground];

[imgBackground release];

viewBackround.backgroundColor=colorPattern;

[colorPattern release];

colorPattern = nil;

viewBackround.alpha = 0.8;

[self.toolbars insertSubview:viewBackround atIndex:0];

[viewBackround release];

viewBackround = nil;

 

 

自適應(yīng)高度

 

 

UILabel *descriptionLabel= [[UILabel alloc] init];

descriptionLabel.frame = CGRectMake(0, 0, 0, 0);

[descriptionLabel setNumberOfLines:0];

NSString *description = [productDic objectForKey:@"description"];

UIFont *font = [UIFont fontWithName:@"Arial" size:14];

CGSize size = CGSizeMake(280, 2000);

CGSize cellLableSize = [description sizeWithFont:font constrainedToSize:size 

  lineBreakMode:UILineBreakModeWordWrap];

[descriptionLabel setFrame:CGRectMake(20, 50, cellLableSize.width, cellLableSize.height)];

descriptionLabel.text = description;

[descriptionLabel setFont:font];

descriptionLabel.backgroundColor = [UIColor clearColor];

bgImage.frame = CGRectMake(10, 10, cellLableSize.width+20, cellLableSize.height+50);

[cell addSubview:bgImage];

[cell addSubview:nameLabel];

[cell addSubview:descriptionLabel];

cell.userInteractionEnabled=NO;

 

 

 

當(dāng)前日期

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

[formatter setDateFormat:@"YYYY-MM-dd hh:mm"];

NSString *locationString=[formatter stringFromDate: [NSDate date]];

NSLog(@"  &&& %@",locationString);

[formatter release];

 
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI