目录1、方式一:使用 Thread 类的 stop() 方法来终止线程(废弃):2、方式二:根据 volatile 修饰的标志位判断线程是否需要中断:3、方式三:通过 interrupt 中断机制终止线程:3.1、使用 interrupt() + isInterrup
I have a NSMutableArray I get by loading a plist into it. The date field comes in as a string and i want to change it into a nsdate. I can change an nsstring into an nsdate.