UICollectionViewを作成して、ビューをきれいな列に配置できるようにしました。幅が500ピクセルを超えるデバイスには1つの列が必要です。
これを達成するために、この関数を作成しました:
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
let size = collectionView.frame.width
if (size > 500) {
return CGSize(width: (size/2) - 8, height: (size/2) - 8)
}
return CGSize(width: size, height: size)
}
これは最初のロードで期待どおりに機能しますが、デバイスを回転させると、計算が常に再び行われるわけではなく、ビューが常に期待どおりに再描画されるとは限りません。デバイスを回転させるときのコードは次のとおりです。
override func willRotateToInterfaceOrientation(toInterfaceOrientation: UIInterfaceOrientation, duration: NSTimeInterval) {
collectionView.collectionViewLayout.invalidateLayout()
self.view.setNeedsDisplay()
}
私は何かを再描画するのを忘れていたと仮定していますが、何がわからないのですか。どんなアイデアでも非常に感謝しています!
viewWillLayoutSubviews
を使用できます。 この質問 は役立つはずですが、View Controllerビューがサブビューをレイアウトしようとするたびに、これは基本的に呼び出されます。
したがって、コードは次のようになります。
override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
guard let flowLayout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout else {
return
}
if UIInterfaceOrientationIsLandscape(UIApplication.sharedApplication().statusBarOrientation) {
//here you can do the logic for the cell size if phone is in landscape
} else {
//logic if not landscape
}
flowLayout.invalidateLayout()
}
おそらくこれを行う最も簡単な方法は、viewWillTransitionToSizeの間にinvalidateLayoutを使用することです。
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
guard let flowLayout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout else {
return
}
flowLayout.invalidateLayout()
}
私はviewWillTransitionToSize
を同じもので使用する傾向があり、そこで単にinvalidateLayout()
を呼び出しました。
コレクションビューでセルのサイズを変更し、回転中に変更をアニメーション化するには、遷移コーディネーターを使用します。
(Swift 4+)
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
// Have the collection view re-layout its cells.
coordinator.animate(
alongsideTransition: { _ in self.collectionView.collectionViewLayout.invalidateLayout() },
completion: { _ in }
)
}
traitCollectionDidChange
の代わりにviewWillLayoutSubviews
メソッドも使用できます:
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
guard let previousTraitCollection = previousTraitCollection, traitCollection.verticalSizeClass != previousTraitCollection.verticalSizeClass ||
traitCollection.horizontalSizeClass != previousTraitCollection.horizontalSizeClass else {
return
}
if traitCollection.horizontalSizeClass == .regular && traitCollection.verticalSizeClass == .regular {
// iPad portrait and landscape
// do something here...
}
if traitCollection.horizontalSizeClass == .compact && traitCollection.verticalSizeClass == .regular {
// iPhone portrait
// do something here...
}
if traitCollection.horizontalSizeClass == .regular && traitCollection.verticalSizeClass == .compact {
// iPhone landscape
// do something here...
}
collectionView?.collectionViewLayout.invalidateLayout()
collectionView?.reloadData()
}
私は次のアプローチを使用しましたが、私にとってはうまくいきました。私の問題は、レイアウトを無効にしていたことです
viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator)
ただし、この時点では(このメソッド名が示すとおり)デバイスはまだ回転していません。したがって、このメソッドはviewWillLayoutSubviews
の前に呼び出されます。したがって、このメソッドでは、デバイスが後で回転するため、正しい境界とフレーム(セーフエリア)がありません。
だから私は通知を使用しました
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
NotificationCenter.default.addObserver(self, selector: #selector(rotated), name: UIDevice.orientationDidChangeNotification, object: nil)
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
NotificationCenter.default.removeObserver(self, name: UIDevice.orientationDidChangeNotification, object: nil)
}
@objc func rotated(){
guard let flowLayout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout else {
return
}
flowLayout.invalidateLayout()
}
コレクションビューのフローデリゲートメソッドでは、すべてが期待どおりに機能します。
extension ViewController: UICollectionViewDelegateFlowLayout{
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize{
if #available(iOS 11.0, *) {
return CGSize(width: view.safeAreaLayoutGuide.layoutFrame.width, height: 70)
} else {
return CGSize(width: view.frame.width, height: 70)
}
}
}
これは、おそらく同じ特別なケースを持つ他の人向けです。 状況:UICollectionView
をTable View ControllerのUITableViewCell
として含めました。コレクションビューのセルの数に合わせて、行の高さをUITableViewAutomaticDimension
に設定しました。同じテーブルビュー内の動的コンテンツを持つ他のセルは正しく動作しましたが、デバイスの回転時に正しくレイアウトされませんでした。長い研究の後、私は働いた解決策を見つけました:
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[self reloadTableViewSilently];
}
- (void) reloadTableViewSilently {
dispatch_async(dispatch_get_main_queue(), ^{
// optional: [UIView setAnimationsEnabled:false];
[self.tableView beginUpdates];
[self.tableView endUpdates];
// optional: [UIView setAnimationsEnabled:true];
});
}
UICollectionViewサブクラスでアイテムのサイズを調整するタスクがありました。これに最適なメソッドはsetFrameです。プロパティcollectionViewFlowLayout ViewControllerから渡しました(私の場合は、デフォルトのフローレイアウトからのアウトレットでした)。
// .h
@property (nonatomic, weak) UICollectionViewFlowLayout *collectionViewFlowLayout;
// .m
- (void)setFrame:(CGRect)frame {
if (!CGSizeEqualToSize(frame.size, self.frame.size)) {
collectionViewFlowLayout.itemSize =
CGSizeMake((UIDeviceOrientationIsLandscape(UIDevice.currentDevice.orientation) ? (frame.size.width - 10) / 2 : frame.size.width), collectionViewFlowLayout.itemSize.height);
}
[super setFrame:frame];
}
マスクコンテンツを作成し、collectionViewに移動できます。ランドスケープ/ポートレートアニメーションが終了したら、できるだけ早く削除する必要があります。
以下に例を示します。
@property (strong, nonatomic) UIImageView *maskImage;
.........
- (UIImageView *) imageForCellAtIndex: (NSInteger) index {
UICollectionView *collectionView = self.pagerView.test;
FSPagerViewCell *cell = nil;
NSArray *indexPaths = [collectionView indexPathsForVisibleItems];
for (NSIndexPath *indexPath in indexPaths) {
if (indexPath.item == index) {
cell = (FSPagerViewCell *)[collectionView cellForItemAtIndexPath: indexPath];
break;
}
}
if (cell) {
return cell.imageView;
}
return nil;
}
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context)
{
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
[self test_didRotateFromInterfaceOrientation: orientation];
UIImageView *imageView = [self imageForCellAtIndex: self.pagerView.currentIndex];
if (imageView) {
UIImageView *imageView = [self imageForCellAtIndex: self.pagerView.currentIndex];
CGSize itemSize = self.pagerView.itemSize;
UIImageView *newImage = [[UIImageView alloc] initWithImage: imageView.image];
[newImage setFrame: CGRectMake((_contentView.bounds.size.width - itemSize.width)/2.0f, 0, itemSize.width, itemSize.height)];
newImage.contentMode = imageView.contentMode;
newImage.clipsToBounds = imageView.clipsToBounds;
newImage.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self.pagerView addSubview: newImage];
self.maskImage = newImage;
}
[self.pagerView.test performBatchUpdates:^{
[self.pagerView.test setCollectionViewLayout:self.pagerView.test.collectionViewLayout animated:YES];
} completion:nil];
// do whatever
} completion:^(id<UIViewControllerTransitionCoordinatorContext> context)
{
[self.maskImage removeFromSuperview];
}];
}