if UILabel.text = [different Chinese Strings], memory leak?
问题 I was solving my app's memory leak problem, I narrowed the scope, and found out the "leak" (instruments didn't say leak, but memory went up) came from this method: - (void)loadDataSource { self.enLabel.text = self.dataSource.en; // English words self.cnLabel.text = self.dataSource.cn; // Chinese translation } The app is a flash cards app. Swipe to switch to next card. Tap to see answer(cnLabel.hidden = NO). It has only 2 CardView, when prepareing next card, cardView.dataSource will be set,