ios - iPhone/ipad 科学计算器教程
<p><p>我一直在网上寻找科学计算器的教程,但我找不到任何东西。我的目标是学习如何编写一个类似于 iPhone 中的计算器应用程序。是否知道任何可以帮助我学习如何将科学函数添加到计算器应用程序的教程。请记住,我已经尝试了基本计算器的各种版本,并且已经通过了其中一些教程,并且只是想学习并可能使用这些方法来添加科学函数,例如 rad、sin、cos 和其他一些东西应用程序。我会很乐意为我提供任何帮助。</p>
<p>AP</p>
<p>编辑:</p>
<p>因为没有关于如何构建科学计算器的真实 Material (至少我还没有找到任何具体的东西)这里是如何构建一个的失败。</p>
<p>首先创建一个 NSObject 类来保存你的操作方法。 (这是可选的,如果您愿意,可以将其设置在您的 getter (.m) 文件之上。)您可以随意调用它。然后在头文件中声明如下。</p>
<pre><code>{
double operand;
double savedNumber;
NSString *waitingOperation;
double waitingOperand;
}
- (void)setOperand:(double)aDouble;
- (double)performOperation:(NSString *)operation;
- (void)performWaitingOperation;
@end
</code></pre>
<p>然后在 NSObject 类的 .m 文件中声明操作函数的方法。类似于以下内容:</p>
<pre><code>-(void)setOperand:(double)num
{
operand=num;
}
-(double)performOperation:(NSString *)operation
{
if(){
operand = sqrt(operand);
}else if (){
if(operand)
operand = 1 / operand;
}else if (){
if(operand)
operand = 2 / operand;
}else if (){
if(operand)
operand = 3 / operand;
}else if (){
if(operand)
operand = (-1) * operand;
}else if (){
operand = sin(operand);
}else if (){//you can add more scientific functions in the same way to this list.
operand = sinh(operand);
}else if (){
operand = cos(operand);
}else if (){
operand = cosh(operand);
}else if (){
operand = tan(operand);
}else if (){
operand = tanh(operand);
}else if (){
savedNumber = operand;
}else if ( ){
savedNumber += operand;
}else if ( ){
savedNumber -= operand;
}else if (){
;
}else if (){
savedNumber = 0;
operand = 0;
waitingOperand = 0;
savedNumber= 0;
}else {
;
waitingOperation = operation;
waitingOperand = operand;
}
return operand;
}
- (void) performWaitingOperation
{
if([@"+" isEqual:waitingOperation]){
operand = waitingOperand + operand ;
} else if([@"-" isEqual:waitingOperation]){
operand = waitingOperand - operand ;
}else if([@"X" isEqual:waitingOperation]){
operand = waitingOperand * operand ;
}else if([@"/" isEqual:waitingOperation]){
if(operand)
operand = waitingOperand / operand ;
}
}
</code></pre>
<p>现在在 ViewController 中,您尝试显示计算器,您需要访问所有这些功能并将它们显示在您的 socket 中,例如按钮和文本字段等。这是.h文件</p>
<pre><code>IBOutlet UILabel *display;
SCalcAI *ai;
BOOL userIsInTheMiddleOfTypingNumber;
}
- (IBAction) digitPressed: (UIButton *)sender;
- (IBAction) operationPressed: (UIButton *) sender;
</code></pre>
<p>记住在这个文件的顶部导入你的 NSObject 类头,否则你会得到一个错误。然后在 .m 文件中你需要声明这些函数。</p>
<pre><code>-(NameofyourNSOBjectClass *) ai
{
if(!ai)
{
ai = [init];
}
return ai;
}
- (IBAction) digitPressed: (UIButton *)sender
{
NSString *digit = [ text];
if(userIsInTheMiddleOfTypingNumber){
stringByAppendingString:digit]];
} else{
;
userIsInTheMiddleOfTypingNumber = YES;
}
}
- (IBAction) operationPressed: (UIButton *) sender
{
if(userIsInTheMiddleOfTypingNumber){
[ setOperand:[ doubleValue]];
userIsInTheMiddleOfTypingNumber = NO;
}
NSString *operation = [ text];
double result = [ performOperation:operation];
];
}
</code></pre>
<p>然后将所有按钮连接到它们需要在 Storyboard 或 xib 中连接的操作。就是这样。以上是整个事情的骨架版本,但我相信您可以在此基础上进行构建。如果您需要帮助,请给我留言。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><a href="http://www.stanford.edu/class/cs193p/cgi-bin/drupal/" rel="noreferrer noopener nofollow">Standford iOS programming class</a> cs193p 有一个构建简单计算器的示例。可能是一个很好的起点。很棒的类(class),很棒的视频。 Paul Hagarty 是一位非常出色的教练。完成核心后,添加科学功能就不难了。</p>
<p>两个资源:
<a href="http://www.tusharsharma.in/project/open-source/mathematical-calculator-iphone4/" rel="noreferrer noopener nofollow">http://www.tusharsharma.in/project/open-source/mathematical-calculator-iphone4/</a> </p>
<p> <a href="http://emplementation.blogspot.com/2010/11/ios-development-tutorials-on-itune-u.html" rel="noreferrer noopener nofollow">http://emplementation.blogspot.com/2010/11/ios-development-tutorials-on-itune-u.html</a> </p></p>
<p style="font-size: 20px;">关于ios - iPhone/ipad 科学计算器教程,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9949745/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9949745/
</a>
</p>
页:
[1]