Panda Security's latest report says banker Trojans represent more that 60 percent of new cyber security threats, while traditional viruses are making a comeback.
Hi All,
I am new with cron job in php,basically i want to send email to user on certain time of period.i want to send email daily,weekly,monthly,quarterly,yearly,or specific amount of days.
In smarty template i want to use this type of function
Can any body know how to do tihs?
Hi,
I developing an application in which i want to change the either color or image of UIPageControl pagination dots. How i change it? It is possible to customize UIpageControl on above scenario?
Hi,
I develop an application in which i process the image using its pixels but in that image processing it takes a lot of time. Therefore i want to crop UIImage (Only middle part of image i.e. removing/croping bordered part of image).I have the develop code are,
- (NSInteger) processImage1: (UIImage*) image
{
CGFloat width = image.size.width;
…
Given an N X N binary matrix (containing only 0's or 1's). How can we go about finding largest rectangle containing all 0's?
Example:
I
0 0 0 0 1 0
0 0 1 0 0 1
II->0 0 0 0 0 0
1 0 0 0 0 0
0 0 0 0 0 1 <--IV
0 0 1 0 0 0
IV
is a 6 X 6 binary matrix, return value in this case will be Cell 1: (2, 1) and…
Hi,
I developing an small application in which i want to crop the UIImage captured by imagePickerControllerSourceTypeOfCamera.
The UIImage should crop by user selected crop area or cropped rectangle.
That means first user capture the image from the camera.Then on captured image the user selected an rectangle having color gray.That image(image…
Hi,
I develop an application in which i selected the UITableView (only two row) having group style on the UIViewController with background image. But i want to be only those two row of the group table shold be displayed on the background image, and the header and footer of the table must be hide.
How i do that?
Hi,
i m sending .ipa file and ad-hoc provisional profile to my friend for installing my application in his iphone through itunes of windowsXP
But it shows invalid entitlement.plist for his iphone.
please reply me as soon as possible,
Thanks in advance for sending me answer.
Hi,
I have developed the application in which i want to set the background color of UIView which is already set on UIViewController.The code is below,
@implementation frmGraphView
/*
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for…
Hi,
I want to divide the circle using CGContext and following code of function given by apple API reference library,
CGContextBeginPath (context);
for (k = 0; k < count; k += 2)
{
CGContextMoveToPoint(context, s[k].x, s[k].y);
CGContextAddLineToPoint(context, s[k+1].x, s[k+1].y);
}
CGContextStrokePath(context);
The…
Hi,
I confused when i want to take single pointer and when should i take double pointer?
In following structure what exactly did?
struct objc_class {
Class isa;
Class super_class;
const char *name;
long version;
long info;
long instance_size;
struct objc_ivar_list *ivars;
struct objc_method_list…
HI,
I develop an application in which i want to implement the splash screen, on that splash screen i want to bind the scrollView and UIImage. My code as follow,
-(void)splashAnimation{
window = [[UIWindow alloc] initWithFrame:CGRectMake(0, 0, 320, 420)];
//scrollView = [[UIScrollView alloc] initWithFrame:[[UIScreen…
Hi,
I developing the simple UIApplication in which i want to crop the UIImage (in .jpg format) with help of CGContext. The developed code till now as follows,
CGImageRef graphicOriginalImage = [originalImage.image CGImage];
UIGraphicsBeginImageContext(originalImage.image.size);
CGContextRef ctx =…
I developed graph using NSObject class and using CGContext method. The following code displaying dynamically in X and Y-axis intervals,
CGContextSetRGBStrokeColor(ctx, 2.0, 2.0, 2.0, 1.0);
CGContextSetLineWidth(ctx, 2.0);
CGContextMoveToPoint(ctx, 30.0, 200.0);
…
How to find the integer occurring maximum number of times (mode) in an unsorted array of integers?
One O(nlogn) approach I could think of is to sort. Is there any other better approach?
Hi,
I want to divide the circle using CGContext and following code of function,
CGContextBeginPath (context);
for (k = 0; k < count; k += 2) {
CGContextMoveToPoint(context, s[k].x, s[k].y);
CGContextAddLineToPoint(context, s[k+1].x, s[k+1].y);
}…
Hi,
I developing an application in which i want to print the values on a line interval, for that i used NSArray with multiple objects and those object i passing into CGContextShowTextAtPoint() method. The code is.
CGContextMoveToPoint(ctx,…
hi,
i write an application in which i want to write/draw the text using CGContext functions such as CGContextSetTextPosition, CGContextSetTextDrawingMode, etc.
I written an code but it can't be work,
CGContextSetTextDrawingMode (ctx ,…
I developed graph using NSObject class and using CGContext method. The following code displaying dynamically in X and Y-axis intervals,
CGContextSetRGBStrokeColor(ctx, 2.0, 2.0, 2.0, 1.0);
CGContextSetLineWidth(ctx, 2.0);
…
Hi,
I want to develop an application in which i want to be initialize the matrix for manipulation. The code as follows,
struct pixel
{
Byte r, g, b,a;
int count;
};
(NSInteger) processImage1: (UIImage*) image
{
struct pixel*…
Hi,thanks in advance,
I have the code in which i want to find out the greatest number from six numbers, the code as follows,
if( (pixels->r == 244 || pixels->g == 242 || pixels->b == 245) || (pixels->r ==…
How to find maximum occuring integer(Mode) in an unsorted array of integers? One O(nlogn) approach I could think of is to sort. Is there any other best approach?
HI,
I develop an application in which i want to implement the splash screen, on that splash screen i want to bind the scrollView and UIImage. My code as follow,
-(void)splashAnimation{
window = [[UIWindow alloc]…