- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个 UITableView,其中每个单元格都包含一个问题和显示在所述问题下方的多个按钮,供用户选择一个来回答。
当我在初始页面上选择“进行测试”按钮时,它会转到 UITableView 所在的下一个屏幕,但随后崩溃。
我设置了一个 CustomCell 类,其中包含一个 IBOutlet、一个 UITextView 和七个 UIButton。我将 UITextView 和 UIButtons 链接到它们适当的变量。下面是一些代码,向您展示我如何填充每个单元格。我不明白屏幕截图中的错误。如果有人可以帮助我解决我做错的事情,我将不胜感激。如果我可以提供更多信息,请告诉我。
TestViewController.h
#import <UIKit/UIKit.h>
#import "Questions.h"
#import "CustomCell.h"
@interface TestViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UITableView *tableView;
@property (strong, nonatomic) IBOutlet UITextView *instructions;
@property (weak, nonatomic) IBOutlet UIButton *results;
//@property (strong, nonatomic) IBOutlet *question;
@property (nonatomic, strong) Questions *survey;
-(IBAction)backPressed:(id)sender;
@end
TestViewController.m
#import "TestViewController.h"
@interface TestViewController ()
@end
@implementation TestViewController {
NSDictionary *allQuestions;
}
@synthesize survey;
@synthesize results;
@synthesize instructions;
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"Personality Test";
survey = [[Questions alloc] init];
// set up question array
survey.questions = @[@"1. You find it difficult to introduce yourself to other people",
@"2. You often get so lost in thoughts that you ignore or forget your surroundings",
// many more.....
];
// set up answers array
// -1 means unanswered
// 0 means neutral
// 1 means weakly agree or weakly disagree
// 2 means agree or disagree
// 3 means strongly agree or strongly disagree
survey.answers = @[[NSNumber numberWithInt:-1],
[NSNumber numberWithInt:-1],
// many more.....
];
// set up dictionary of question/answer relationship
allQuestions = [NSDictionary dictionaryWithObjects:survey.questions forKeys:survey.answers];
//
// depending on what question is asked based on categories
// each question fits into one of the 5:
// 1. Mind: Introvert or Extravert
// 2. Energy: Observant or Intuitive
// 3. Nature: Thinking or Feeling
// 4. Tactics: Judging or Prospecting
// 5. Identity: Assertive or Turbulent
// Each array spot will hold one of the two words on the right
// set up types array
survey.types = @[@"neutral",
@"neutral",
// many more.....
];
NSString *instr = @"Things to know:\n1. Takes less than 12 minutes.\n2. Answer honestly, even if you don't like the answer. \n3. Try not to leave any 'neutral' answers ";
//UIFont *instrFont = [UIFont fontWithName:@"HelveticaNeue" size:12];
//CGSize textviewSize = [instr sizeWithFont:instrFont constrainedToSize:CGSizeMake(300, CGFLOAT_MAX) lineBreakMode:NSLineBreakByWordWrapping];
//instructions = [[UITextView alloc] initWithFrame:CGRectMake(100, 30, 300, 100)];
instructions.text = instr;
//[self.view addSubview:instructions];
UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleDone target:self action:@selector(backPressed:)];
self.navigationItem.leftBarButtonItem = backButton;
self.navigationItem.hidesBackButton = NO;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [survey.questions count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"QuestionCell";
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
/*
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
*/
NSString *que = (NSString *)[survey.questions objectAtIndex:indexPath.row];
//UITextView *textView = (UITextView *)[cell viewWithTag: 100];
cell.textView = (UITextView *)[cell viewWithTag: 100];
cell.textView.text = que;
return cell;
}
最佳答案
一定要在 Storyboard中为单元格提供重用标识符“QuestionCell”。您还必须向 TableView 注册该标识符的自定义类。 (参见 here)。
在 viewDidLoad 处或之后的某处...
[self.tableView registerClass:[CustomCell self]
forCellReuseIdentifier:@"QuestionCell"];
关于ios - 无法使用 CustomCell 填充 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34123547/
我用 UIButton 和 UILabel 创建了一个 customCell 代码在这里: ItemViewController.h: @interface ItemViewController :
我创建了一个带有 UILabel 的自定义 UITableViewCell。 在 cellForRowAtIndexPath 方法中,我初始化自定义单元格并为 UILabel 赋值。 加载自定义单元格
我是 Objective-C 的新手,正在尝试创建自定义单元格。在 Storyboard 中(在 Xcode 4.2 下)我正在推送一个 TableViewController。在这个 Control
我有一个子类 CustomCell,它继承 self 的父类 CreateEvent。该子类描述了位于 CreateEvent View Controller 上的 TableView 单元格的各个单
我在包含 5 个单元格的 TableView 中遇到了一个奇怪的错误。由于单元格高度较大,第五个单元格最初不在屏幕上,用户需要向下滚动才能看到它。这些单元格显示一个下载按钮、一个进度指示器,如果下载完
我正在获取用户的照片资源并尝试在我的UICollectionView中创建自定义UICollectionViewCell,其中第一个索引是相机Image 和其他单元格是相机图像。但是当我滚动时,就像重
我正在使用 collectionCell 选择和取消选择 collectionCell 上的图像。 但是当我点击选中的单元格时,它不会被取消选中。 我根据 Nirav 建议更改了我的代码,它适用于当前
我有很多 customCells,每个单元格可能有一个按钮,其作用类似于文本框或文本区域。当 View 加载时,它们的高度非常小。 override func viewDidLoad() {
我想处理我的开关。如果 UIswitches 发生变化,我如何保存数据并在发生变化时更新我的 tableview。 稍后我想在更改第一个开关时隐藏一个部分。那么我该如何在这个函数中做到这一点呢?
我正在创建一个包含 UILabel 的 CustomCell,默认情况下,UILabel 将有两行启用环绕的文本,但有时文本将需要三行。 字体类型和大小是固定的,无法更改,我试图在创建 NSStrin
这可能是一个新手错误和问题,但下面这段代码有什么问题? class CustomCell: UITableViewCell { @IBOutlet weak var TitleLabel: U
我有一个带有自定义单元格的 tableView,每个单元格的标签中都有文本 当我选择一个单元格时,我会用另一种颜色突出显示该单元格并将其保存在一个变量中,这样当我使用“下一步”按钮时,我将转到另一个
我有一个 UITableView,有两个部分,第二部分在其标题中包含一个 UISegmentedControl。我希望用户可以通过在我的 UISegmentedControl 中选择一个段来更改 ta
这个问题在这里已经有了答案: "Auto Layout still required after executing -layoutSubviews" with UITableViewCell sub
我有一个 UITableView,其中的行包含两个 UISwitch 按钮。在我升级到 Xcode8 之前,它与我一起向 View Controller 添加一个协议(protocol),如下所示 p
我有一个自定义单元格类,其中有两个按钮和一个在其自己的类中定义的标签。当按下按钮时,我使用协议(protocol)委托(delegate)来更新标签的值。但我无法弄清楚如何更新 UITableView
下午好,我正在 Firebase 中运行一个查询,我用得到的信息来运行另一个查询。我遇到的问题是在第二个 CustomCell 上显示数据。我正在使用 print 语句,数据显示在控制台中。 Segu
我已经使用自定义单元实现了 UITableView, 我想做的是,我想根据文本长度改变高度UITableViewCell,(动态高度) 这是我的代码片段, #define FONT_SIZE 14.0
我正在尝试制作一个 UITableView,其中每个单元格都包含一个问题和显示在所述问题下方的多个按钮,供用户选择一个来回答。 当我在初始页面上选择“进行测试”按钮时,它会转到 UITableView
我有一个简单的 UITableView 不可滚动且不需要重复使用单元格。我有一个带有 .xib 文件的自定义单元类。 我的目标是在协议(protocol)方法中使用自定义初始化传递索引路径 -(UIT
我是一名优秀的程序员,十分优秀!