Explorar o código

Fix issue #1533(StateTrailer title could not be changed immediately if setting) (#1536)

Frank %!s(int64=4) %!d(string=hai) anos
pai
achega
0dec0e47ca
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m

+ 1 - 0
MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m

@@ -38,6 +38,7 @@ - (UILabel *)stateLabel {
 - (instancetype)setTitle:(NSString *)title forState:(MJRefreshState)state {
     if (title == nil) return self;
     self.stateTitles[@(state)] = title;
+    self.stateLabel.text = self.stateTitles[@(self.state)];
     return self;
 }