macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

NSPredicate Additions

eventPredicateWithStartDate:endDate:UID:calendars:

** +(NSPredicate *)eventPredicateWithStartDate:(NSDate *)startDate: endDate:(NSDate *)endDate: UID:(NSString *)UID: calendars:(NSArray *)calendars: 解説 特定のカレンダーに属するUIDと日付範囲中で特定のイベントのNSPredicateオブジェクトを返し…

taskPredicateWithUncompletedTasksDueBefore:calendars:

** +(NSPredicate *)taskPredicateWithUncompletedTasksDueBefore:(NSDate *)dueDate: calendars:(NSArray *)calendars: 解説 特定のカレンダーに属していて、指定の日時の前で特定のタスクが完了していないNSPredicateオブジェクトを返します。 返り値 ( NS…

taskPredicateWithUncompletedTasks:

** +(NSPredicate *)taskPredicateWithUncompletedTasks:(NSArray *)calendars: 解説 特定のカレンダーに属していて、特定のタスクが完了していないNSPredicateオブジェクトを返します。 返り値 ( NSPredicate * ) 引数 ( NSArray * )calendars フレームワー…

taskPredicateWithTasksCompletedSince:calendars:

** +(NSPredicate *)taskPredicateWithTasksCompletedSince:(NSDate *)completedSince: calendars:(NSArray *)calendars: 解説 特定の日から特定のカレンダーに属する特定の完成したタスクのNSPredicateオブジェクトを返します。 返り値 ( NSPredicate * ) …

taskPredicateWithCalendars:

** +(NSPredicate *)taskPredicateWithCalendars:(NSArray *)calendars: 解説 特定のカレンダーに属する特定のタスクのNSPredicateオブジェクトを返します。 返り値 ( NSPredicate * ) 引数 ( NSArray * )calendars フレームワーク CalendarStore クラス NSP…

eventPredicateWithStartDate:endDate:calendars:

** +(NSPredicate *)eventPredicateWithStartDate:(NSDate *)startDate: endDate:(NSDate *)endDate: calendars:(NSArray *)calendars: 解説 特定のカレンダーに属するデータ範囲の中で特定のイベントとしてNSPredicateオブジェクトを返します。 返り値 ( NS…