最近我无法在调试窗口中快速查看对象.
而不是这样看:

我看到了这个:

我认为最近改变了Xcode 6.3和Swift 1.2.您知道任何解决方案还是更新故障?
我在创建自定义表格单元格视图时遇到问题.
CustomCell.h
#import <UIKit/UIKit.h>
@interface CustomCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
@property (weak, nonatomic) IBOutlet UILabel *date;
@property (weak, nonatomic) IBOutlet UILabel *title;
@property (weak, nonatomic) IBOutlet UILabel *content;
@end
Run Code Online (Sandbox Code Playgroud)
CustomCell.m
#import "CustomCell.h"
@implementation CustomCell
@synthesize title, imageView, content, date;
- (void)awakeFromNib {
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
Run Code Online (Sandbox Code Playgroud)
TableViewController
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"CustomCell"; …Run Code Online (Sandbox Code Playgroud)