您好,登錄后才能下訂單哦!
tableviewcell自適應cell高度 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return self.arr.count;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"]; cell.textLabel.numberOfLines = 100; cell.textLabel.font = [UIFont systemFontOfSize:15]; cell.textLabel.text = self.arr[indexPath.row]; return cell;}- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ NSString* text = self.arr[indexPath.row]; CGSize constraint = CGSizeMake(375-40, 100); NSAttributedString* attributedText = [[NSAttributedString alloc]initWithString:text attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:15]}]; CGRect rect = [attributedText boundingRectWithSize:constraint options:NSStringDrawingUsesLineFragmentOrigin context:nil]; CGSize size = rect.size; CGFloat height = MAX(size.height, 20); NSLog(@"%f",height); return height+10; } 無限圖片輪播Banner // 網絡加載圖片的輪播器(只需一步設置即可使用)cycleScrollView.p_w_picpathURLStringsGroup = p_w_picpathsURLStrings; 現已支持cocoapods導入:pod 'SDCycleScrollView','~> 1.3' 如需更詳細的設置,參考如下: cycleScrollView.pageControlAliment = SDCycleScrollViewPageContolAlimentRight; // 設置pageControl居右,默認居中cycleScrollView.titlesGroup = 標題數組(數組元素個數必須和圖片數組元素個數保持一致); // 如果設置title數組,則會在圖片下面添加標題cycleScrollView.delegate = ; // 如需監聽圖片點擊,請設置代理,實現代理方法cycleScrollView.autoScrollTimeInterval = ;// 自定義輪播時間間隔 |
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。