小编Mad*_*han的帖子

如何将UIButton的标题设置为左对齐?

我需要从a的左侧显示电子邮件地址UIButton,但它位于中心.

有没有办法将对齐设置为左侧UIButton

这是我目前的代码:

UIButton* emailBtn = [[UIButton alloc] initWithFrame:CGRectMake(5,30,250,height+15)];
emailBtn.backgroundColor = [UIColor clearColor];
[emailBtn setTitle:obj2.customerEmail forState:UIControlStateNormal];
emailBtn.titleLabel.font = [UIFont systemFontOfSize:12.5];
[emailBtn setTitleColor:[[[UIColor alloc]initWithRed:0.121 green:0.472 blue:0.823 alpha:1]autorelease] forState:UIControlStateNormal];
[emailBtn addTarget:self action:@selector(emailAction:) forControlEvents:UIControlEventTouchUpInside];
[elementView addSubview:emailBtn];
[emailBtn release];
Run Code Online (Sandbox Code Playgroud)

objective-c uibutton

458
推荐指数
9
解决办法
20万
查看次数

如何在iphone的objective-c中以编程方式调整图像大小

我有一个应用程序,我在一个小空间显示大图像.图像非常大,但我只在100x100像素的帧中显示它们.我的应用程序响应缓慢,因为我正在使用的图像的大小.

为了提高性能,如何使用Objective-C以编程方式调整图像大小?

iphone image objective-c

45
推荐指数
3
解决办法
7万
查看次数

我们可以从MKMapView获取所有注释视图

是否有任何关于如何从中获取所有注释的直接方法或任何建议MKMapView

iphone objective-c

26
推荐指数
2
解决办法
1万
查看次数

如何使用for循环将对象添加到NSArray?

我想[NSDecimalNumber numberWithInt:i]使用for循环添加到数组.

它是硬编码的:

 NSArray *customTickLocations = [NSArray arrayWithObjects: [NSDecimalNumber numberWithInt:1],[NSDecimalNumber numberWithInt:2],[NSDecimalNumber numberWithInt:3],[NSDecimalNumber numberWithInt:4],[NSDecimalNumber numberWithInt:5],[NSDecimalNumber numberWithInt:6],[NSDecimalNumber numberWithInt:7],[NSDecimalNumber numberWithInt:8],[NSDecimalNumber numberWithInt:9],[NSDecimalNumber numberWithInt:10],[NSDecimalNumber numberWithInt:11],[NSDecimalNumber numberWithInt:12],nil];
Run Code Online (Sandbox Code Playgroud)

我想这样,但我只能在这里添加一个对象....

for (int i=0; i<totalImagesOnXaxis; i++)
{
    customTickLocations = [NSArray arrayWithObject:[NSDecimalNumber numberWithInt:i]];
}
Run Code Online (Sandbox Code Playgroud)

请帮我解决这个问题,先谢谢你,Madan

iphone objective-c nsarray ios

21
推荐指数
6
解决办法
7万
查看次数

c ++,objective-c和objective-c ++有什么区别?

我想知道c ++与objective-c和objective-c ++之间的区别.任何人都可以给我带来差异吗?我们可以使用c ++进行iPhone开发吗?

谢谢,Madan Mohan

c++ objective-c objective-c++

12
推荐指数
2
解决办法
2万
查看次数

如何从Mercurial签出源代码

我需要从Mercurial下载源代码.

$ hg clone xmppframework.googlecode.com/hg xmppframework 
  warning: xmppframework.googlecode.com certificate with fingerprint b1:af:83:76:f3:81:b0:57:70:d8:07:42:c8:c1:b3:67:38:c8:7a:bc not verified (check hostfingerprints or web.cacerts config setting) 
  requesting all changes 
  adding changesets 
  adding manifests 
  adding file changes
Run Code Online (Sandbox Code Playgroud)

我在终端尝试使用此链接下载源代码.但命令失败.

任何人都可以帮我摆脱这个.

感谢所有人,Madan.

mercurial

11
推荐指数
1
解决办法
1万
查看次数

如何从Tab Bar Controller上方显示UIActionSheet视图?

我需要在Tab Bar控制器上方显示操作表.我的意思是,即使操作表视图处于可见模式,我也能看到Tab Bar控制器.

因此,请建议如何从Tab Bar控制器上方查看.可能吗.

其次,如何更改动作表的背景颜色和取消按钮背景颜色.

请帮我

谢谢,Madan Mohan.

iphone objective-c tabbarcontroller uiactionsheet

10
推荐指数
1
解决办法
8774
查看次数

Objective C中isEqualToString和operator ==之间的差异是什么?

if(lyricsId == areleased.trackId)

{
  ----------;
  ----------;
}
Run Code Online (Sandbox Code Playgroud)

当我使用上面的代码它没有进入那个循环所以,我使用下面的代码,然后它进入循环,我出去了.

if([lyricsId isEqualToString:areleased.trackId])
{
    ----------;
    ----------;

}
Run Code Online (Sandbox Code Playgroud)

==和isEqualToString之间有什么区别吗?

objective-c

7
推荐指数
2
解决办法
2691
查看次数

如何在Objective-C中使用stringWithFormat方法追加字符串变量

我想使用stringWithFormat将字符串附加到单个varilable中.我在使用stringByAppendingString时知道它.请帮我使用stringWithFormat为下面的代码添加.

NSString* curl = @"https://invoices?ticket=";
curl = [curl stringByAppendingString:self.ticket];
curl = [curl stringByAppendingString:@"&apikey=bfc9c6ddeea9d75345cd"];
curl = [curl stringByReplacingOccurrencesOfString:@"\n" withString:@""];
Run Code Online (Sandbox Code Playgroud)

谢谢,Madan Mohan.

append objective-c stringwithformat

7
推荐指数
1
解决办法
1万
查看次数

如何在iPhone sdk中为UIWebView设置背景颜色

我已经将背景颜色作为图像添加到uiwebview,但是它会进入Web视图的背面而不是Web视图.Web视图始终为白色视图,我无法更改它.

myView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
myView.autoresizingMask=YES;

webView = [[UIWebView alloc] init];
webView.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"BG_Doctor.png"]];

webView.delegate = self;
[myView addSubview:webView];
self.view=myView;
Run Code Online (Sandbox Code Playgroud)

请帮我设置webview的背景颜色,而不是背面颜色

iphone background colors uiwebview

6
推荐指数
1
解决办法
1万
查看次数