テキストを中央揃えにしたい垂直方向画面全体を埋める大きなUITextView
の内側に-少しのテキスト、たとえば2、3個の単語がある場合、高さによって中央揃えにします。テキスト(IBにあるプロパティ)の中央揃えに関する問題ではなく、テキストの配置についての質問ではありません垂直UITextView
の真ん中ifテキストは短いため、UITextView
には空白の領域はありません。これはできますか?前もって感謝します!
ビューがロードされたときに、最初にcontentSize
のUITextView
キー値のオブザーバーを追加します。
- (void) viewDidLoad {
[textField addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:NULL];
[super viewDidLoad];
}
次に、このメソッドを追加して、contentOffset
値が変更されるたびにcontentSize
を調整します。
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
UITextView *tv = object;
CGFloat topCorrect = ([tv bounds].size.height - [tv contentSize].height * [tv zoomScale])/2.0;
topCorrect = ( topCorrect < 0.0 ? 0.0 : topCorrect );
tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};
}
IKitはKVOに準拠していない であるため、UITextView
が変更されるたびに更新するcontentSize
のサブクラスとしてこれを実装することにしました。
これは、 Carlosの答え のわずかに変更されたバージョンで、contentInset
の代わりにcontentOffset
を設定します。 iOS 9と互換性がある に加えて、iOS 8.4ではバグが少ないようです。
class VerticallyCenteredTextView: UITextView {
override var contentSize: CGSize {
didSet {
var topCorrection = (bounds.size.height - contentSize.height * zoomScale) / 2.0
topCorrection = max(0, topCorrection)
contentInset = UIEdgeInsets(top: topCorrection, left: 0, bottom: 0, right: 0)
}
}
}
KVOを使用したくない場合は、このコードを次のような関数にエクスポートしてオフセットを手動で調整することもできます。
-(void)adjustContentSize:(UITextView*)tv{
CGFloat deadSpace = ([tv bounds].size.height - [tv contentSize].height);
CGFloat inset = MAX(0, deadSpace/2.0);
tv.contentInset = UIEdgeInsetsMake(inset, tv.contentInset.left, inset, tv.contentInset.right);
}
そしてそれを呼び出す
-(void)textViewDidChange:(UITextView *)textView{
[self adjustContentSize:textView];
}
また、コード内のテキストを編集するたびに。コントローラーをデリゲートとして設定することを忘れないでください
Swift 3バージョン:
func adjustContentSize(tv: UITextView){
let deadSpace = tv.bounds.size.height - tv.contentSize.height
let inset = max(0, deadSpace/2.0)
tv.contentInset = UIEdgeInsetsMake(inset, tv.contentInset.left, inset, tv.contentInset.right)
}
func textViewDidChange(_ textView: UITextView) {
self.adjustContentSize(tv: textView)
}
IOS 9.0.2の場合。代わりにcontentInsetを設定する必要があります。 contentOffsetをKVOにすると、iOS 9.0.2は最後にそれを0に設定し、contentOffsetへの変更を上書きします。
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
UITextView *tv = object;
CGFloat topCorrect = ([tv bounds].size.height - [tv contentSize].height * [tv zoomScale])/2.0;
topCorrect = ( topCorrect < 0.0 ? 0.0 : topCorrect );
[tv setContentInset:UIEdgeInsetsMake(topCorrect,0,0,0)];
}
- (void) viewWillAppear:(BOOL)animated
{
[super viewWillAppear:NO];
[questionTextView addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:NULL];
}
左、下、右の端のインセットにそれぞれ0、0、0を使用しました。ユースケースに合わせてこれらも計算してください。
コンテンツを垂直方向に中央揃えするUITextView
拡張機能は次のとおりです。
extension UITextView {
func centerVertically() {
let fittingSize = CGSize(width: bounds.width, height: CGFloat.max)
let size = sizeThatFits(fittingSize)
let topOffset = (bounds.size.height - size.height * zoomScale) / 2
let positiveTopOffset = max(0, topOffset)
contentOffset.y = -positiveTopOffset
}
}
スウィフト3:
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
textField.frame = self.view.bounds
var topCorrect : CGFloat = (self.view.frame.height / 2) - (textField.contentSize.height / 2)
topCorrect = topCorrect < 0.0 ? 0.0 : topCorrect
textField.contentInset = UIEdgeInsetsMake(topCorrect,0,0,0)
}
func alignTextVerticalInTextView(textView :UITextView) {
let size = textView.sizeThatFits(CGSizeMake(CGRectGetWidth(textView.bounds), CGFloat(MAXFLOAT)))
var topoffset = (textView.bounds.size.height - size.height * textView.zoomScale) / 2.0
topoffset = topoffset < 0.0 ? 0.0 : topoffset
textView.contentOffset = CGPointMake(0, -topoffset)
}
AutolayoutとlineFragmentPadding
とtextContainerInset
をゼロに設定して使用しているテキストビューがあります。上記の解決策はいずれも私の状況では機能しませんでした。しかし、これは私には有効です。 iOS 9でテスト済み
@interface VerticallyCenteredTextView : UITextView
@end
@implementation VerticallyCenteredTextView
-(void)layoutSubviews{
[self recenter];
}
-(void)recenter{
// using self.contentSize doesn't work correctly, have to calculate content size
CGSize contentSize = [self sizeThatFits:CGSizeMake(self.bounds.size.width, CGFLOAT_MAX)];
CGFloat topCorrection = (self.bounds.size.height - contentSize.height * self.zoomScale) / 2.0;
self.contentOffset = CGPointMake(0, -topCorrection);
}
@end
この問題もあり、UITableViewCell
とUITextView
で解決しました。カスタムUITableViewCell
サブクラス、プロパティstatusTextView
でメソッドを作成しました:
- (void)centerTextInTextView
{
CGFloat topCorrect = ([self.statusTextView bounds].size.height - [self.statusTextView contentSize].height * [self.statusTextView zoomScale])/2.0;
topCorrect = ( topCorrect < 0.0 ? 0.0 : topCorrect );
self.statusTextView.contentOffset = (CGPoint){ .x = 0, .y = -topCorrect };
そして、メソッドでこのメソッドを呼び出します:
- (void)textViewDidBeginEditing:(UITextView *)textView
- (void)textViewDidEndEditing:(UITextView *)textView
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
このソリューションは問題なく機能しました。試してみてください。
Swift 3:
class VerticallyCenteredTextView: UITextView {
override var contentSize: CGSize {
didSet {
var topCorrection = (bounds.size.height - contentSize.height * zoomScale) / 2.0
topCorrection = max(0, topCorrection)
contentInset = UIEdgeInsets(top: topCorrection, left: 0, bottom: 0, right: 0)
}
}
}
参照: https://geek-is-stupid.github.io/2017-05-15-how-to-center-text-vertically-in-a-uitextview/
Carlosの回答に追加してください。テレビのテキストがテレビのサイズよりも大きい場合は、テキストを再センタリングする必要がないので、このコードを変更します。
tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};
これに:
if ([tv contentSize].height < [tv bounds].size.height) {
tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};
}
自動レイアウトソリューション:
以下のコードを試すことができますが、オブザーバーは必須ではありません。ビューの割り当てが解除されると、オブザーバーがエラーをスローすることがあります。このコードは、viewDidLoad、viewWillAppear、またはviewDidAppearのどこにでも保存できます。
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
dispatch_async(dispatch_get_main_queue(), ^(void) {
UITextView *tv = txtviewDesc;
CGFloat topCorrect = ([tv bounds].size.height - [tv contentSize].height * [tv zoomScale])/2.0;
topCorrect = ( topCorrect < 0.0 ? 0.0 : topCorrect );
tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};
});
});
この問題を修正するために、中心の高さを垂直方向に延長しました。
Swift 5:
extension UITextView {
func centerContentVertically() {
let fitSize = CGSize(width: bounds.width, height: CGFloat.greatestFiniteMagnitude)
let size = sizeThatFits(fitSize)
let heightOffset = (bounds.size.height - size.height * zoomScale) / 2
let positiveTopOffset = max(0, heightOffset)
contentOffset.y = -positiveTopOffset
}
}
私はこのようにしました。まず、UIViewにUITextViewを埋め込みました(これはMac OSでも機能するはずです)。次に、外部UIViewの4つの側面すべてをコンテナーの側面に固定し、UITextViewの形状およびサイズと同等または等しい形状とサイズを与えました。したがって、UITextViewの適切なコンテナがありました。次に、UITextViewの左右の境界線をUIViewの側面に固定し、UITextViewに高さを与えました。最後に、UITextViewをUIViewの垂直方向の中央に配置しました。 Bingo :)これで、UITextViewはUIViewの垂直方向の中央に配置されるため、UITextView内のテキストも垂直方向の中央に配置されます。