我是新來的核心數據如何檢查的實體是否相關或不另一個實體
我有2個實體Routine
和Exercise
被相關的Routine.exercise和Exercise.routine。 用戶例程有一個名稱,用戶練習也有。
我試圖 也嘗試僅僅指剛Routine.exercise = Exercise
但是這給了我一個警告說Comparision of distinct pointer type (NSSET and Exercise)
,我也試着這樣做Routine.exercise.name = @"theName"
,但我推它,因爲我不能得到鍛鍊的名字一樣,...
if (Routine.exercise == Exercise.routine) {
NSLOG(@"YES");
} else {
NSLOG(@"NO");
}
基本上我只想知道Exercise是否與例程建立了關係。任何人都可以幫我解決這個問題嗎?
是一個多對多的關係
是A.userB一對多的關係嗎?如果這樣可以解釋警告,因爲這些警告是作爲NSSet存儲的。 –
是一個多對多的關係 –