Как найти UIView ... когда нет self.view? - PullRequest
1 голос
/ 20 апреля 2011

Так что я некоторое время боролся с этим, будучи новичком в iOS - я уверен, что это либо базовая концепция, которую я упускаю, либо свойство, с которым я еще не сталкивался, на которое мне нужно сослаться.

Сценарий: контроллер представления создает UIScrollView. UIView создается как контейнер для нескольких UILabels (с описанием события, места и времени). Метод вызывается многократно для создания этих UILabels внутри блока. Создание этих меток по одной работает нормально - просто добавляя каждую в представление - но когда я перемещаю код в метод и повторно использую его, абстрагируя такие вещи, как размер текста, отступ и т. Д., Я не могу ссылаться на то же родительское представление (потому что это не View Controller?) или поиск с использованием viewWithTag (ничего не возвращает), чтобы найти родителя.

Это простое исправление или моя базовая структура имеет недостатки? Заранее большое спасибо за ваше время!

Заголовок:

//
//  ScheduleColumn.h
//

#import <Foundation/Foundation.h>

@interface ScheduleColumn : UIView {

}

- (void)makeTextBlock:(int)parentViewID label:(NSString*)label textSize:(int)textSize indent:(int)indent y:(int)y width:(int)width height:(int)height;

@end

Реализация:

//
//  ScheduleColumn.m
//

#import "ScheduleColumn.h"

@implementation ScheduleColumn

// makeTextBlock: type, text, textSize, indent, build_y, width, height

// type: 0 = Title, 1 = Subtitle, 2 = Times
// text: Line content
// textSize: self-explanatory
// indent: indent from left side of parent
// build_y: # of units down from top of parent view to build
// width & height: self-explanatory

- (void)makeTextBlock:(int)parentViewID label:(NSString*)label textSize:(int)textSize indent:(int)indent y:(int)y width:(int)width height:(int)height {

    double unixTime;

unixTime = [[NSDate date] timeIntervalSince1970];

NSLog(@"makeTextBlock called");
NSLog(@"parentViewID: %u", parentViewID);
NSLog(@"label: %@", label);
NSLog(@"textSize: %u", textSize);
NSLog(@"indent: %u", indent);
NSLog(@"y: %u", y);
NSLog(@"width: %u", width);
NSLog(@"height: %u", height);
NSLog(@"time: %u", unixTime);

UILabel *textView = [[UILabel alloc] initWithFrame:CGRectMake(indent, y, width, height)];   
textView.backgroundColor = [UIColor clearColor];
textView.textColor = [UIColor whiteColor];
textView.lineBreakMode = UILineBreakModeWordWrap;
textView.numberOfLines = 0;
textView.tag = unixTime;

textView.font = [UIFont fontWithName:@"PetitaMedium" size: textSize];
textView.text = label;

CGSize constraintTextSize;
constraintTextSize.width = width;
constraintTextSize.height = MAXFLOAT;
CGSize theTextSize = [label sizeWithFont:[UIFont fontWithName:@"PetitaMedium" size: textSize] constrainedToSize:constraintTextSize lineBreakMode:UILineBreakModeWordWrap];

CGRect newTextFrame = textView.frame;
newTextFrame.size.height = theTextSize.height;
textView.frame = newTextFrame;

UIView *parentView = (UIView *)[self.view viewWithTag:parentViewID];

[parentView addSubview:textView];
[textView release];

NSLog(@"--- break ---");

}

.. и, наконец, вызовы из View Controller:

int build_y;
int subtitle_indent;

build_y = 30;
subtitle_indent = 20;

UIView *blockView = [[UIView alloc] initWithFrame: CGRectMake ( 0, build_y, 185, 50)];
blockView.tag = 100;
[FireworksContent addSubview:blockView];

// Add top line
UIView *lineView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, blockView.bounds.size.width, 0.5)];
lineView.backgroundColor = [UIColor whiteColor];
[blockView addSubview:lineView];

// Add Block Text
ScheduleColumn *blockText = [ScheduleColumn alloc];
[blockText makeTextBlock:blockView.tag label:@"Venue" textSize:18 indent:subtitle_indent y:build_y width:blockView.bounds.size.width height:20];
[blockText makeTextBlock:blockView.tag label:@"ShowTitle" textSize:12 indent:subtitle_indent y:build_y width:blockView.bounds.size.width height:20];
[blockText makeTextBlock:blockView.tag label:@"Showtime" textSize:36 indent:subtitle_indent y:build_y width:blockView.bounds.size.width height:20];


[lineView release];
[blockText release];

[blockView release];

... строка viewWithTag завершается ошибкой, потому что у "self" нет представления ... изменение класса на UIViewController позволяет ему работать, но все равно не радует.

1 Ответ

1 голос
/ 20 апреля 2011

Метод класса, который возвращает новое представление, а не метод экземпляра, который возвращает void, имеет больше смысла.

+(UIView *)makeTextBlock:(int)parentViewID label:(NSString*)label textSize:(int)textSize indent:(int)indent y:(int)y width:(int)width height:(int)height

Создайте представление так, как вам нужно, и верните его в конце метода.

Затем вы можете создать несколько из этих представлений и сохранить ссылку на них в своем представленииконтроллер, если хотите.

UIView *blockText1 = [ScheduleColumn makeTextBlock .....];
[self.view addSubview: blockText1];
...