"Fixed" another crash.

This commit is contained in:
Pietro Gagliardi 2015-08-02 18:34:47 -04:00
parent b3ad1768b0
commit 10efe52513
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@
} }
constraints = [NSLayoutConstraint constraintsWithVisualFormat:constraint options:0 metrics:nil views:p.views]; constraints = [NSLayoutConstraint constraintsWithVisualFormat:constraint options:0 metrics:nil views:p.views];
[contentView addConstraints:constraints]; [contentView addConstraints:constraints];
[constraint release]; //TODO uncomment this and the program tries to access after free [constraint release];
} }
}; };