Fixes This class is not key value coding-compliant for the key "keyPath"

Since "Key Path" is the header for run time attributes, my guess is that
this was a click misfire so long ago. I'm not clear if this was ever
causing a crash or just a warning, but we don't want the noise.

Fix "Unbalanced calls to begin/end appearance transitions"

You should not segue while animations are in progress. I'm not sure if
this was causing intermittent crashes or just the warning.

//FREEBIE

Closes #1130
pull/1/head
Michael Kirk 9 years ago committed by Frederic Jacobs
parent 4f38e70a06
commit 721ed066f2

@ -606,9 +606,6 @@ A0 09 9A FF A8 8A 09 99</string>
<color key="textColor" red="0.30192413926124573" green="0.30198189616203308" blue="0.30192050337791443" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<fontDescription key="fontDescription" type="system" pointSize="16"/>
<textInputTraits key="textInputTraits" keyboardType="phonePad" keyboardAppearance="light"/>
<userDefinedRuntimeAttributes>
<userDefinedRuntimeAttribute type="boolean" keyPath="keyPath" value="YES"/>
</userDefinedRuntimeAttributes>
</textField>
<button opaque="NO" userInteractionEnabled="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="AbN-AU-yk7">
<rect key="frame" x="20" y="18" width="152" height="26"/>

@ -137,13 +137,15 @@ static NSString *const kShowSignupFlowSegue = @"showSignupFlow";
[super viewWillAppear:animated];
[self checkIfEmptyView];
[self updateInboxCountLabel];
[[self tableView] reloadData];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
if (![TSAccountManager isRegistered]) {
[self performSegueWithIdentifier:kShowSignupFlowSegue sender:self];
return;
}
[self updateInboxCountLabel];
[[self tableView] reloadData];
}
- (void)tableViewSetUp {

Loading…
Cancel
Save