Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将开始创建类似于 Soulver、Calca 和 TaskPaper 的应用程序的任何建议。
我打算创建一个简单的基于文本的项目管理应用程序来处理日程安排、分配等。
有没有我可以利用的框架或库?
您可能会发现NSExpression它很有用,因为它可以执行多种数学运算:
NSExpression
NSExpression *expression = [NSExpression expressionWithFormat:@"5 - 2**5"]; id value = [expression expressionValueWithObject:nil context:nil];