Youtube App won't load image or title thumbnails

Hey, @Chris_Parker thanks for the suggestion!

I set breakpoints in the setCell function, however, the debugger never hits them. I pause the debugger and get this:

1 libsystem_kernel.dylib`mach_msg_trap:
2 0x7fff523b6220 <+0>: movq %rcx, %r10
3 0x7fff523b6223 <+3>: movl $0x100001f, %eax ; imm = 0x100001F
4 0x7fff523b6228 <+8>: syscall
5 -> 0x7fff523b622a <+10>: retq Thread 1: signal SIGSTOP
6 0x7fff523b622b <+11>: nop

There is a green SIGSTOP error on line 5 and when I step into it I get this:

-> 0x7fff523b67fc <+204>: cmpl $0x10004005, %eax ; imm = 0x10004005

I’m not sure what this error means if it means anything at all. This happens after the line:

func setCell(_ v:Video) {

    //Ensure that we have a video
    guard self.video != nil else {
                   return
           }

If I set a breakpoint before that the debugger works. I’m sure that I have videos because before I made the VideoTableViewCell.swift file the simulator was accessing the titles to the videos just fine. I’m not sure what could be the issue. Here are images in case they are helpful.